[GTKUI] Fix ImportError with ReactorAlreadyInstalledError
Older systems such as Ubuntu Lucid encountered this import error as Twisted versions < 10 don't have the exception type ReactorAlreadyInstalledError.
This commit is contained in:
parent
75dca80ac4
commit
05b4cb5546
|
@ -39,11 +39,16 @@ gobject.set_prgname("deluge")
|
|||
|
||||
# Install the twisted reactor
|
||||
from twisted.internet import gtk2reactor
|
||||
from twisted.internet.error import ReactorAlreadyInstalledError
|
||||
|
||||
try:
|
||||
from twisted.internet.error import ReactorAlreadyInstalledError
|
||||
except ImportError:
|
||||
# ReactorAlreadyInstalledError not available in Twisted version < 10
|
||||
pass
|
||||
|
||||
try:
|
||||
reactor = gtk2reactor.install()
|
||||
except ReactorAlreadyInstalledError, e:
|
||||
except ReactorAlreadyInstalledError:
|
||||
# Running unit tests so trial already installed a rector
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in New Issue