aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Sorokin <me@ch1p.io>2024-04-03 04:09:14 +0300
committerEvgeny Sorokin <me@ch1p.io>2024-04-03 04:09:14 +0300
commit6efda942544b82a29115a8f471a94afbc3908752 (patch)
treee0e4390dabe760f0abd39aaff1a83797bd97ef12
parentd03ff16b1ab99e95a7516d876b3117ee37eab66d (diff)
web_kbn: debug.cgi: stringify req.url
-rwxr-xr-xbin/web_kbn.py2
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)