Fix deluge-gtk not working with twisted 12 (fixes #2148)
This commit is contained in:
parent
129c09c5a7
commit
183c47f810
|
@ -405,6 +405,10 @@ Please see the details below for more information."), details=traceback.format_e
|
|||
|
||||
if self.config["show_connection_manager_on_start"]:
|
||||
# XXX: We need to call a simulate() here, but this could be a bug in twisted
|
||||
try:
|
||||
reactor._simulate()
|
||||
except AttributeError:
|
||||
# twisted < 12
|
||||
reactor.simulate()
|
||||
self.connectionmanager.show()
|
||||
|
||||
|
|
Loading…
Reference in New Issue