summaryrefslogtreecommitdiff
path: root/mail/src/leap
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2015-06-10 10:49:34 -0400
committerKali Kaneko <kali@leap.se>2015-06-10 10:49:34 -0400
commitcfd645a7f8478ba958aea5a56a04721e3df5aede (patch)
tree0a65514e53c832cf0d80714c9e191ce912092dfa /mail/src/leap
parent6f7a23aed1b813aef17504ae7f729453ac24b95e (diff)
[refactor] remove unneeded conditional
Diffstat (limited to 'mail/src/leap')
-rw-r--r--mail/src/leap/mail/sync_hooks.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/mail/src/leap/mail/sync_hooks.py b/mail/src/leap/mail/sync_hooks.py
index 3cf858b..a8a69c9 100644
--- a/mail/src/leap/mail/sync_hooks.py
+++ b/mail/src/leap/mail/sync_hooks.py
@@ -60,8 +60,7 @@ class MailProcessingPostSyncHook(object):
log.msg("Mail post-sync hook: processing %s" % doc_id)
process_fun(doc_id)
- if self._processing_deferreds:
- return defer.gatherResults(self._processing_deferreds)
+ return defer.gatherResults(self._processing_deferreds)
def set_account(self, account):
self._account = account
@@ -100,9 +99,8 @@ class MailProcessingPostSyncHook(object):
return res
d = self.process_received_docs(pending)
- if d:
- d.addCallback(remove_pending_docs)
- return d
+ d.addCallback(remove_pending_docs)
+ return d
_mbox_uuid_regex = regex_compile(constants.METAMSGID_MBOX_RE)