diff options
author | Evgeny Sorokin <me@ch1p.io> | 2024-04-03 04:10:13 +0300 |
---|---|---|
committer | Evgeny Sorokin <me@ch1p.io> | 2024-04-03 04:10:13 +0300 |
commit | 86191fd652b2a084fe8881c80bcc915dbc5e9657 (patch) | |
tree | 512cbd02fd9b86838d8bd16fda3d1acd9891700d /bin | |
parent | 6efda942544b82a29115a8f471a94afbc3908752 (diff) |
aio fix
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/web_kbn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/web_kbn.py b/bin/web_kbn.py index f5e4823..0e7d3fb 100755 --- a/bin/web_kbn.py +++ b/bin/web_kbn.py @@ -560,7 +560,7 @@ async def debug(req: web.Request): url=str(req.url), method=req.method, ) - return await http.ajax_ok(info) + return http.ajax_ok(info) def init_web_app(app: web.Application): |