diff options
author | spoob <spoob@gmx.de> | 2010-04-08 16:23:08 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2010-04-08 16:23:08 +0200 |
commit | b31b2df26d5c21a2caf4d7877c484cceccf4e260 (patch) | |
tree | 67f98eade19c0ddc80efaacd6bae9a14ffa6675b /module/network | |
parent | Fixed #92 (diff) | |
download | pyload-b31b2df26d5c21a2caf4d7877c484cceccf4e260.tar.xz |
Cleaned Megaupload
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 36cbbe91c..a074df7c4 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -95,7 +95,7 @@ class Request: "Connection: keep-alive", "Keep-Alive: 300"]) - def load(self, url, get={}, post={}, ref=True, cookies=False, just_header=False): + def load(self, url, get={}, post={}, ref=True, cookies=True, just_header=False): url = str(url) @@ -169,7 +169,7 @@ class Request: self.pycurl.setopt(pycurl.PROXY, adress.split(":")[0]) self.pycurl.setopt(pycurl.PROXYPORT, adress.split(":")[1]) - def download(self, url, file_name, get={}, post={}, ref=True, cookies=False): + def download(self, url, file_name, get={}, post={}, ref=True, cookies=True): url = str(url) |