diff --git a/SearcherABC.py b/SearcherABC.py index 35f1b3d..913c8d2 100644 --- a/SearcherABC.py +++ b/SearcherABC.py @@ -134,13 +134,14 @@ class SearcherABC: self.log('[makeRequest]: HTTP Error, e.code=' + str(e.code)) return #self.cookieJar.extract_cookies(response, urllib2) + #self.log(response.info().get('Set-Cookie')) if response.info().get('Content-Encoding') == 'gzip': buf = StringIO(response.read()) decomp = zlib.decompressobj(16 + zlib.MAX_WBITS) - response = decomp.decompress(buf.getvalue()) + text = decomp.decompress(buf.getvalue()) else: - response = response.read() - return response + text = response.read() + return text def askCaptcha(self, url): temp_dir = self.tempdir()