[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:
Calum Lind 2014-11-18 12:03:41 +00:00
parent 75dca80ac4
commit 05b4cb5546
1 changed files with 7 additions and 2 deletions

View File

@ -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