mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
Catch all exceptions in do_multicall()
This commit is contained in:
parent
cfc742501d
commit
7322a08323
1 changed files with 2 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue