summaryrefslogtreecommitdiff
path: root/service/pixelated/adapter/mailstore/leap_mailstore.py
diff options
context:
space:
mode:
authorGiovane <giovaneliberato@gmail.com>2015-11-19 16:20:52 -0200
committerGiovane <giovaneliberato@gmail.com>2015-11-19 16:21:08 -0200
commitc21a6ddf277514c62a89cbd9214ec4fc905b4988 (patch)
tree6bfa9cbcb5d2522649d5985bd8d323c9f5491511 /service/pixelated/adapter/mailstore/leap_mailstore.py
parent2615c785260ea168f0eb8d9fe2a8a6576a5392dd (diff)
Move 'From' initialization to InputMail factory. w/ @bwagner #531
Diffstat (limited to 'service/pixelated/adapter/mailstore/leap_mailstore.py')
-rw-r--r--service/pixelated/adapter/mailstore/leap_mailstore.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/service/pixelated/adapter/mailstore/leap_mailstore.py b/service/pixelated/adapter/mailstore/leap_mailstore.py
index 21c85b74..42e065ac 100644
--- a/service/pixelated/adapter/mailstore/leap_mailstore.py
+++ b/service/pixelated/adapter/mailstore/leap_mailstore.py
@@ -337,7 +337,6 @@ class LeapMailStore(MailStore):
# fetch mailbox name by mbox_uuid
mbox_uuid = message.get_wrapper().fdoc.mbox_uuid
mbox_name = yield self._mailbox_name_from_uuid(mbox_uuid)
-
mail = LeapMail(mail_id, mbox_name, message.get_wrapper().hdoc.headers, set(message.get_tags()), set(message.get_flags()), body=body, attachments=self._extract_attachment_info_from(message)) # TODO assert flags are passed on
defer.returnValue(mail)