summaryrefslogtreecommitdiffstats
path: root/module/network
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2009-11-09 21:06:39 +0100
committerGravatar mkaay <mkaay@mkaay.de> 2009-11-09 21:06:39 +0100
commita58cfc276be9736578d7ce8f1dd63a621f94c637 (patch)
tree03d24194dc87c1141d780378b94f2b2d5652293d /module/network
parentuploaded.to premium (diff)
downloadpyload-a58cfc276be9736578d7ce8f1dd63a621f94c637.tar.xz
checksum methods for RapidshareCom and UploadedTo
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: