else:
error, r = request_get(url, headers, self.timeout, None)
if error is not None:
- self.log(' Error: %s' % error)
+ self.log(' Error : %s' % error)
if self.proxy and error != '404 not_found':
self.log(' Retrying with the proxy...')
error, r = request_get(url, headers,
self.proxy_ok.add(url_host)
if error is not None:
if self.proxy and error != '404 not_found':
- self.log(' Proxy error: %s' % error)
+ self.log(' Proxy error : %s' % error)
if url_host not in self.proxy_ok:
self.proxy_error.add(url_host)
return error, None, None, None, None