From 6efda942544b82a29115a8f471a94afbc3908752 Mon Sep 17 00:00:00 2001 From: Evgeny Sorokin Date: Wed, 3 Apr 2024 04:09:14 +0300 Subject: web_kbn: debug.cgi: stringify req.url --- bin/web_kbn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.3