Skip to content

Commit e5e3b85

Browse files
authored
Merge pull request #12 from Peter1303/dev
add unquote for parse_query_string() in utils.py
2 parents c8b81dd + ef255bb commit e5e3b85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def parse_query_string(query_string):
131131
value = ""
132132
else:
133133
value = param[1]
134-
query_params[key] = value
134+
query_params[key] = unquote(value)
135135
return query_params
136136

137137

0 commit comments

Comments
 (0)