summaryrefslogtreecommitdiffstats
path: root/module/network
diff options
context:
space:
mode:
Diffstat (limited to 'module/network')
-rwxr-xr-xmodule/network/Request.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/network/Request.py b/module/network/Request.py
index 092e75a01..6799563ac 100755
--- a/module/network/Request.py
+++ b/module/network/Request.py
@@ -117,7 +117,7 @@ class Request:
else:
get = ""
- url = url + get
+ url = "%s?%s" % (url, get)
if self.curl:
@@ -222,7 +222,7 @@ class Request:
else:
get = ""
- url = url + get
+ url = "%s?%s" % (url, get)
if self.curl: