diff options
author | mkaay <mkaay@mkaay.de> | 2010-02-17 21:30:46 +0100 |
---|---|---|
committer | mkaay <mkaay@mkaay.de> | 2010-02-17 21:30:46 +0100 |
commit | b61a1288fd32f09120141fb5d6b8edcd8d5dbba5 (patch) | |
tree | 54bd817d3cca43b8d6bce1c505bc515b3566abb4 /module/network | |
parent | django builtin server improvement (diff) | |
download | pyload-b61a1288fd32f09120141fb5d6b8edcd8d5dbba5.tar.xz |
checksum now consumes less memory, fixed cookie cleaning
Diffstat (limited to 'module/network')
-rwxr-xr-x | module/network/Request.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/network/Request.py b/module/network/Request.py index 5e3503bb3..7cb68dd4a 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -230,7 +230,7 @@ class Request: def clear_cookies(self): if self.curl: - self.pycurl.setopt(pycurl.COOKIELIST, "ALL") + self.pycurl.setopt(pycurl.COOKIELIST, "") else: del self.cookies[:] |