summaryrefslogtreecommitdiff
path: root/oauthlib/common.py
diff options
context:
space:
mode:
authorRafał Furmański <rfurmanski@opera.com>2016-05-09 10:26:06 +0200
committerRafał Furmański <rfurmanski@opera.com>2016-05-09 10:26:06 +0200
commit91cdbbd858e88b5008d1bc2ee2b4d7c8fedc3f9d (patch)
tree84c6d76e517122e32a8fc86aea176481cc0c2d53 /oauthlib/common.py
parente9cbd38ee8a3db8a3a5c55b54e70a3daa6727cc1 (diff)
downloadoauthlib-91cdbbd858e88b5008d1bc2ee2b4d7c8fedc3f9d.tar.gz
Fix #422: Query strings should be able to include colons
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 6b96de8..ab2f95d 100644
--- a/oauthlib/common.py
+++ b/oauthlib/common.py
@@ -109,7 +109,7 @@ def decode_params_utf8(params):
return decoded
-urlencoded = set(always_safe) | set('=&;%+~,*@!()/?')
+urlencoded = set(always_safe) | set('=&;:%+~,*@!()/?')
def urldecode(query):