Fix deluge-gtk not working with twisted 12 (fixes #2148)
This commit is contained in:
parent
18eb885983
commit
17cac01673
|
@ -373,6 +373,10 @@ Please see the details below for more information."), details=traceback.format_e
|
||||||
|
|
||||||
if self.config["show_connection_manager_on_start"]:
|
if self.config["show_connection_manager_on_start"]:
|
||||||
# XXX: We need to call a simulate() here, but this could be a bug in twisted
|
# 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()
|
reactor.simulate()
|
||||||
self.connectionmanager.show()
|
self.connectionmanager.show()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue