summaryrefslogtreecommitdiffstats
path: root/module/network
diff options
context:
space:
mode:
authorGravatar spoob <spoob@gmx.de> 2010-04-08 16:23:08 +0200
committerGravatar spoob <spoob@gmx.de> 2010-04-08 16:23:08 +0200
commitb31b2df26d5c21a2caf4d7877c484cceccf4e260 (patch)
tree67f98eade19c0ddc80efaacd6bae9a14ffa6675b /module/network
parentFixed #92 (diff)
downloadpyload-b31b2df26d5c21a2caf4d7877c484cceccf4e260.tar.xz
Cleaned Megaupload
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 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)