diff options
author | Evgeny Sorokin <me@ch1p.io> | 2024-04-03 04:09:14 +0300 |
---|---|---|
committer | Evgeny Sorokin <me@ch1p.io> | 2024-04-03 04:09:14 +0300 |
commit | 6efda942544b82a29115a8f471a94afbc3908752 (patch) | |
tree | e0e4390dabe760f0abd39aaff1a83797bd97ef12 | |
parent | d03ff16b1ab99e95a7516d876b3117ee37eab66d (diff) |
web_kbn: debug.cgi: stringify req.url
-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 b5bfa74..f5e4823 100755 --- a/bin/web_kbn.py +++ b/bin/web_kbn.py @@ -557,7 +557,7 @@ async def debug(req: web.Request): info = dict( # headers=req.headers, host=req.headers.get('Host'), - url=req.url, + url=str(req.url), method=req.method, ) return await http.ajax_ok(info) |