We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 49f96ef + 07f5be5 commit 077c726Copy full SHA for 077c726
handler.py
@@ -92,7 +92,7 @@ def headers(self):
92
try:
93
for u in headers.split(' '):
94
key = u.split("=")[0]
95
- val = u.split("=")[1]
+ val = u.split("=")[1].replace('%20',' ')
96
header_dict[key] = val
97
return header_dict
98
except:
0 commit comments