catch httplib errors in fetch_ryf_blog (bug 591461)

This commit is contained in:
Jeff Balogh 2010-08-27 15:29:24 -07:00
Родитель 6eb1a2f2ba
Коммит 03bad73c29
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,4 @@
import httplib
import time
import urllib2
@ -19,7 +20,7 @@ def fetch_ryf_blog():
url = "http://rockyourfirefox.com/feed/"
try:
p = pq(url=url)
except urllib2.URLError, e:
except (urllib2.URLError, httplib.HTTPException), e:
log.error("Couldn't open (%s): %s" % (url, e))
return