diff options
| author | Kali Kaneko <kali@leap.se> | 2013-08-07 16:57:46 +0200 | 
|---|---|---|
| committer | Kali Kaneko <kali@leap.se> | 2013-08-07 16:57:46 +0200 | 
| commit | 52649f07c7a8821548a6dc406252956eb03a96df (patch) | |
| tree | f803587cbf60a77d7fb52efa3134467d0469a5eb | |
| parent | 22e27a6f1ca4b5b53ac752e59ee7c21a1ed2d370 (diff) | |
catch exception if tried to stop not running loop
| -rw-r--r-- | mail/src/leap/mail/imap/fetch.py | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/mail/src/leap/mail/imap/fetch.py b/mail/src/leap/mail/imap/fetch.py index 1c41813..ee9de3e 100644 --- a/mail/src/leap/mail/imap/fetch.py +++ b/mail/src/leap/mail/imap/fetch.py @@ -93,7 +93,11 @@ class LeapIncomingMail(object):          Stops the loop that fetches mail.          """          if self._loop: -            self._loop.stop() +            try: +                self._loop.stop() +            except AssertionError: +                logger.debug("It looks like we tried to stop a " +                             "loop that was not running.")      def _sync_soledad(self):          log.msg('syncing soledad...') | 
