diff options
author | Tomás Touceda <chiiph@leap.se> | 2014-07-11 16:36:20 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2014-07-11 16:36:20 -0300 |
commit | aa1241acb0c2480b3368337193df675a5ea2ecbc (patch) | |
tree | 2de0d79b8442a29363e25317e8b8f6667a038b34 /src/leap/bitmask/gui/mainwindow.py | |
parent | fa68f4a86173aca3313d4254811471bc93d2a86d (diff) | |
parent | 5adf4d457ed964b7cc00def5d2be0dabd66fa04c (diff) |
Merge remote-tracking branch 'refs/remotes/kali/feature/syncdb-adapt-3' into develop
Diffstat (limited to 'src/leap/bitmask/gui/mainwindow.py')
-rw-r--r-- | src/leap/bitmask/gui/mainwindow.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py index 8a5b8275..e53ab7f3 100644 --- a/src/leap/bitmask/gui/mainwindow.py +++ b/src/leap/bitmask/gui/mainwindow.py @@ -1786,7 +1786,6 @@ class MainWindow(QtGui.QMainWindow): Final steps to quit the app, starting from here we don't care about running services or user interaction, just quitting. """ - logger.debug('Final quit...') # We can reach here because all the services are stopped or because a # timeout was triggered. Since we want to run this only once, we exit @@ -1796,6 +1795,10 @@ class MainWindow(QtGui.QMainWindow): self._finally_quitting = True + logger.debug('Closing soledad...') + self._backend.soledad_close() + logger.debug('Final quit...') + # Remove lockfiles on a clean shutdown. logger.debug('Cleaning pidfiles') if IS_WIN: |