diff --git a/lib/request/connect.py b/lib/request/connect.py index 488586f7b..080a7773f 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -736,7 +736,9 @@ class Connect(object): else: get += "%s%s=%s" % (delimiter, name, value) - get = urlencode(get, limit=True) + if not skipUrlEncode: + get = urlencode(get, limit=True) + if post is not None: if place not in (PLACE.POST, PLACE.CUSTOM_POST) and hasattr(post, UNENCODED_ORIGINAL_VALUE): post = getattr(post, UNENCODED_ORIGINAL_VALUE)