diff options
author | mkaay <mkaay@mkaay.de> | 2009-11-09 21:06:39 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2009-11-09 21:06:39 +0100 |
commit | a58cfc276be9736578d7ce8f1dd63a621f94c637 (patch) | |
tree | 03d24194dc87c1141d780378b94f2b2d5652293d /module/network | |
parent | uploaded.to premium (diff) | |
download | pyload-a58cfc276be9736578d7ce8f1dd63a621f94c637.tar.xz |
checksum methods for RapidshareCom and UploadedTo
Diffstat (limited to 'module/network')
-rwxr-xr-x | module/network/Request.py | 4 |
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: |