summaryrefslogtreecommitdiffstats
path: root/module/network
diff options
context:
space:
mode:
authorGravatar mkaay <mkaay@mkaay.de> 2010-05-07 23:37:00 +0200
committerGravatar mkaay <mkaay@mkaay.de> 2010-05-07 23:37:00 +0200
commit65f9ee4d52aaca054d695230dcae4c188eee1549 (patch)
treea37235925e9253ad7d3e0ae3249ae4186f0fd359 /module/network
parentadded connection debugging (diff)
downloadpyload-65f9ee4d52aaca054d695230dcae4c188eee1549.tar.xz
pycurl compression check
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 5d0871d47..733ab5851 100755
--- a/module/network/Request.py
+++ b/module/network/Request.py
@@ -89,13 +89,13 @@ class Request:
self.pycurl.setopt(pycurl.HEADERFUNCTION, self.write_header)
self.pycurl.setopt(pycurl.BUFFERSIZE, self.bufferSize)
self.pycurl.setopt(pycurl.SSL_VERIFYPEER, 0)
- self.pycurl.setopt(pycurl.ENCODING, "gzip, deflate")
if self.debug:
self.pycurl.setopt(pycurl.VERBOSE, 1)
self.pycurl.setopt(pycurl.USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en; rv:1.9.0.8) Gecko/2009032609 Firefox/3.0.10")
- self.pycurl.setopt(pycurl.ENCODING, "gzip, deflate")
+ if pycurl.version_info()[7]:
+ self.pycurl.setopt(pycurl.ENCODING, "gzip, deflate")
self.pycurl.setopt(pycurl.HTTPHEADER, ["Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
"Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7",
"Connection: keep-alive",