rename response

pull/15/head
DiMartinoXBMC 2016-11-29 21:47:37 +03:00
parent ec149abdc6
commit 155c10cc91
1 changed files with 4 additions and 3 deletions

View File

@ -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()