From 5ee653dd89b0d69c434926b6d3540fb5d2056136 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 15 Jan 2013 10:14:02 +0100 Subject: [PATCH] Merging commit 57bcbb458eade2850a6d7623ecddbe49c69cf334 from @morisson --- lib/request/connect.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)