summaryrefslogtreecommitdiff
path: root/oauthlib/common.py
diff options
context:
space:
mode:
authorMathieu Alorent <github@kumy.net>2013-07-24 15:51:05 +0200
committerMathieu Alorent <github@kumy.net>2013-07-24 15:51:05 +0200
commit1b40aa17f9ff3db1df05b97725a8d4043b0b261e (patch)
tree7c6471c4fb041bd3ef005f3ecd7fcd0d07d134c4 /oauthlib/common.py
parent6fe70413ee6c87720ea6421d64683624f230795a (diff)
downloadoauthlib-1b40aa17f9ff3db1df05b97725a8d4043b0b261e.tar.gz
Add star to the set of safe characters in urls
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r--oauthlib/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py
index a21c43f..be1ef14 100644
--- a/oauthlib/common.py
+++ b/oauthlib/common.py
@@ -118,7 +118,7 @@ def decode_params_utf8(params):
return decoded
-urlencoded = set(always_safe) | set('=&;%+~,')
+urlencoded = set(always_safe) | set('=&;%+~,*')
def urldecode(query):