diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-08-13 11:38:14 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-08-13 11:38:14 -0300 |
commit | 7cacae6d4bd742cfb1f994e5093a939a594884d9 (patch) | |
tree | aaf62134ec529a2348b92f0c01d2a78f052418cf /src/leap/bitmask/gui/twisted_main.py | |
parent | b4511cdad95f8cbfa21f266addd215a8a6ff36d0 (diff) |
Stop the reactor by adding the stop to the call chain
Diffstat (limited to 'src/leap/bitmask/gui/twisted_main.py')
-rw-r--r-- | src/leap/bitmask/gui/twisted_main.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/leap/bitmask/gui/twisted_main.py b/src/leap/bitmask/gui/twisted_main.py index c7add3ee..e11af7bd 100644 --- a/src/leap/bitmask/gui/twisted_main.py +++ b/src/leap/bitmask/gui/twisted_main.py @@ -53,8 +53,8 @@ def quit(app): :type app: QtCore.QApplication """ from twisted.internet import reactor - logger.debug('stopping twisted reactor') + logger.debug('Stopping twisted reactor') try: - reactor.stop() + reactor.callLater(0, reactor.stop) except error.ReactorNotRunning: - logger.debug('reactor not running') + logger.debug('Reactor not running') |