RSS: Display error instead of traceback if fetching a feed failed.

This commit is contained in:
Valentin Lorentz 2012-08-26 07:38:40 +00:00
parent 30f711b12f
commit 0c6320e9c1
1 changed files with 4 additions and 1 deletions

View File

@ -256,6 +256,7 @@ class RSS(callbacks.Plugin):
# and DoS the website in question.
self.acquireLock(url)
if self.willGetNewFeed(url):
results = None
try:
self.log.debug('Downloading new feed from %u', url)
results = feedparser.parse(url)
@ -270,7 +271,9 @@ class RSS(callbacks.Plugin):
# These seem mostly harmless. We'll need reports of a
# kind that isn't.
self.log.debug('Allowing bozo_exception %r through.', e)
if results.get('feed', {}):
if results is None:
self.log.error('Could not fetch feed %s' % url)
elif results.get('feed', {}):
self.cachedFeeds[url] = results
self.lastRequest[url] = time.time()
else: