Catch all exceptions in do_multicall()

This commit is contained in:
Andrew Resch 2008-06-15 02:41:25 +00:00
parent cfc742501d
commit 7322a08323
1 changed files with 2 additions and 1 deletions

View File

@ -95,7 +95,8 @@ class CoreProxy(gobject.GObject):
callback(ret)
except:
pass
except (socket.error, xmlrpclib.ProtocolError, deluge.xmlrpclib.Fault), e:
except (socket.error, xmlrpclib.ProtocolError,
deluge.xmlrpclib.Fault, Exception), e:
log.warning("Could not contact daemon: %s", e)
self.set_core_uri(None)
finally: