Skip to content

Commit

Permalink
fix bug with url decoding when parsing out query string parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
jon committed Aug 9, 2022
1 parent 7ea5b9b commit acf33ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phew/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def file_exists(filename):


def urldecode(text):
text.replace("+", " ")
text = text.replace("+", " ")
result = ""
token_caret = 0
# decode any % encoded characters
Expand Down

0 comments on commit acf33ad

Please sign in to comment.