diff options
Diffstat (limited to 'module/network/HTTPBase.py')
-rw-r--r-- | module/network/HTTPBase.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/network/HTTPBase.py b/module/network/HTTPBase.py index 753c6c0f1..fead2f4ed 100644 --- a/module/network/HTTPBase.py +++ b/module/network/HTTPBase.py @@ -49,7 +49,7 @@ import socks from MultipartPostHandler import MultipartPostHandler -DEBUG = 1 +DEBUG = 0 HANDLE_ERRORS = 1 class PyLoadHTTPResponse(HTTPResponse): @@ -293,7 +293,7 @@ class HTTPBase(): self.cookieJar = CookieJar() - self.debug = True + self.debug = DEBUG def createOpener(self, cookies=True): opener = OpenerDirector() |