From 3e0f747fad6f401d3245075778d79a985e134dbf Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 4 Jun 2013 00:05:25 +0200 Subject: [PATCH] Minor fix --- lib/request/connect.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/request/connect.py b/lib/request/connect.py index f50e9fb33..1844c6e3f 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -287,6 +287,9 @@ class Connect(object): if PLACE.GET in conf.parameters and not get: get = conf.parameters[PLACE.GET] + if not conf.skipUrlEncode: + get = urlencode(get, limit=True) + if get: url = "%s?%s" % (url, get) requestMsg += "?%s" % get