Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3e0f747

Browse files
committed
Minor fix
1 parent 213d0ec commit 3e0f747

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

lib/request/connect.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,9 @@ def getPage(**kwargs):
287287
if PLACE.GET in conf.parameters and not get:
288288
get = conf.parameters[PLACE.GET]
289289

290+
if not conf.skipUrlEncode:
291+
get = urlencode(get, limit=True)
292+
290293
if get:
291294
url = "%s?%s" % (url, get)
292295
requestMsg += "?%s" % get

0 commit comments

Comments
 (0)