From 8e9f093a9d74da03eca85f6ff2ee7239e8133cce Mon Sep 17 00:00:00 2001 From: RaNaN Date: Wed, 25 Aug 2010 12:11:09 +0200 Subject: more cleanup --- module/network/Request.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'module/network/Request.py') diff --git a/module/network/Request.py b/module/network/Request.py index 45fd3f66b..75a490b9f 100755 --- a/module/network/Request.py +++ b/module/network/Request.py @@ -77,7 +77,7 @@ class Request: def init_curl(self): self.rep = StringIO() self.header = "" - + self.pycurl = pycurl.Curl() self.pycurl.setopt(pycurl.FOLLOWLOCATION, 1) self.pycurl.setopt(pycurl.MAXREDIRS, 5) @@ -90,6 +90,7 @@ class Request: self.pycurl.setopt(pycurl.HEADERFUNCTION, self.write_header) self.pycurl.setopt(pycurl.BUFFERSIZE, self.bufferSize) self.pycurl.setopt(pycurl.SSL_VERIFYPEER, 0) + if self.debug: self.pycurl.setopt(pycurl.VERBOSE, 1) if self.interface and self.interface.lower() != "none": -- cgit v1.2.3