Minor fix

This commit is contained in:
Miroslav Stampar 2013-06-04 00:05:25 +02:00
parent 213d0ecfb9
commit 3e0f747fad

View File

@ -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