diff options
author | Massimiliano <masci@evonove.it> | 2013-07-09 00:00:37 +0200 |
---|---|---|
committer | Massimiliano <masci@evonove.it> | 2013-07-09 00:00:37 +0200 |
commit | c8bf90d7027966e24ebfb40188b0856cd5d7deaf (patch) | |
tree | 57f34d06f20f29694959da889eeff2427569cd00 /oauthlib/common.py | |
parent | fbd7d0b24086d99484375ea02a56a8181dbf436d (diff) | |
download | oauthlib-c8bf90d7027966e24ebfb40188b0856cd5d7deaf.tar.gz |
add comma to the set of safe characters in urls
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r-- | oauthlib/common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py index a0dd1c3..a21c43f 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): |