summaryrefslogtreecommitdiff
path: root/src/leap/mail/imap/fetch.py
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-08-19 15:43:34 -0300
committerTomás Touceda <chiiph@leap.se>2013-08-19 15:43:34 -0300
commit533512176313e5188df86f08954ba3c74f7c1cfb (patch)
tree0a7054b971b42bf7b491804f05e8ac6e6c1c42ae /src/leap/mail/imap/fetch.py
parentbbab478d267a412f300430e2cd70f31df27b8d18 (diff)
Signal string content instead of bool or int
Diffstat (limited to 'src/leap/mail/imap/fetch.py')
-rw-r--r--src/leap/mail/imap/fetch.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/mail/imap/fetch.py b/src/leap/mail/imap/fetch.py
index 12534b3..ff6005d 100644
--- a/src/leap/mail/imap/fetch.py
+++ b/src/leap/mail/imap/fetch.py
@@ -182,7 +182,7 @@ class LeapIncomingMail(object):
logger.warning("Error while decrypting msg: %r" % (exc,))
decrdata = ""
ok = False
- leap_events.signal(IMAP_MSG_DECRYPTED, ok)
+ leap_events.signal(IMAP_MSG_DECRYPTED, "1" if ok else "0")
# XXX TODO: defer this properly
return self._process_decrypted(doc, decrdata)