Skip to content

Commit

Permalink
Merge pull request #12 from Peter1303/dev
Browse files Browse the repository at this point in the history
add unquote for parse_query_string() in utils.py
  • Loading branch information
troublegum authored Sep 29, 2024
2 parents c8b81dd + ef255bb commit e5e3b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def parse_query_string(query_string):
value = ""
else:
value = param[1]
query_params[key] = value
query_params[key] = unquote(value)
return query_params


Expand Down

0 comments on commit e5e3b85

Please sign in to comment.