From 9963cd24f81c14b09474b20dcb3acabba5ed7036 Mon Sep 17 00:00:00 2001 From: Arthur Wiebe Date: Tue, 13 Jan 2015 14:44:31 -0500 Subject: Allow ! character in query string My app broke because there was a ! character in the query string. This small change fixed it for me. --- oauthlib/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'oauthlib/common.py') diff --git a/oauthlib/common.py b/oauthlib/common.py index 9cd7a61..2d1e8ef 100644 --- a/oauthlib/common.py +++ b/oauthlib/common.py @@ -107,7 +107,7 @@ def decode_params_utf8(params): return decoded -urlencoded = set(always_safe) | set('=&;%+~,*@') +urlencoded = set(always_safe) | set('=&;%+~,*@!') def urldecode(query): -- cgit v1.2.1