Skip to content

Commit

Permalink
Fix #422: Query strings should be able to include colons
Browse files Browse the repository at this point in the history
  • Loading branch information
r4fek committed May 9, 2016
1 parent e9cbd38 commit 91cdbbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oauthlib/common.py
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 91cdbbd

Please sign in to comment.