Skip to content

Commit

Permalink
Merge pull request #305 from artooro/patch-1
Browse files Browse the repository at this point in the history
Allow ! character in query string
  • Loading branch information
thedrow committed Jul 19, 2015
2 parents b45c394 + 9963cd2 commit c8111dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oauthlib/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def decode_params_utf8(params):
return decoded


urlencoded = set(always_safe) | set('=&;%+~,*@')
urlencoded = set(always_safe) | set('=&;%+~,*@!')


def urldecode(query):
Expand Down

0 comments on commit c8111dd

Please sign in to comment.