# HG changeset patch # User Sylvain Thénault # Date 1308738715 -7200 # Node ID 92fd4b77701670148d5f7b7e5a70e95707d1391c # Parent 3d654a7df8232ce668b5ae0f97e4ef0db8502614 [datafeed] catch all exception, we should continue to process other urls diff -r 3d654a7df823 -r 92fd4b777016 server/sources/datafeed.py --- a/server/sources/datafeed.py Tue Jun 21 17:49:32 2011 +0200 +++ b/server/sources/datafeed.py Wed Jun 22 12:31:55 2011 +0200 @@ -191,7 +191,7 @@ try: if parser.process(url, raise_on_error): error = True - except IOError, exc: + except Exception, exc: if raise_on_error: raise self.error('could not pull data while processing %s: %s',