Remove useless "as" in error catch
parent
e73cbf56c2
commit
3d6d7e70b6
2
morss.py
2
morss.py
|
@ -341,7 +341,7 @@ def Fill(item, cache, feedurl='/', fast=False):
|
||||||
url = item.link.encode('utf-8')
|
url = item.link.encode('utf-8')
|
||||||
con = urllib2.build_opener(HTMLDownloader()).open(url, timeout=TIMEOUT)
|
con = urllib2.build_opener(HTMLDownloader()).open(url, timeout=TIMEOUT)
|
||||||
data = con.read()
|
data = con.read()
|
||||||
except (urllib2.URLError, httplib.HTTPException, socket.timeout) as error:
|
except (urllib2.URLError, httplib.HTTPException, socket.timeout):
|
||||||
log('http error')
|
log('http error')
|
||||||
cache.set(item.link, 'error-http')
|
cache.set(item.link, 'error-http')
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in New Issue