diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2014-09-11 18:11:48 -0300 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2014-09-11 18:11:48 -0300 |
commit | fa6806de54873dca3823a9a95b3c40c1c97934cc (patch) | |
tree | ff65efe5036e7844651dd5e70c95a27b1dca5bfb /service | |
parent | 6c884f74b018b987f95f0259f701ea9fec09d1a3 (diff) |
fixing pep8
Diffstat (limited to 'service')
-rw-r--r-- | service/pixelated/adapter/pixelated_mail.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/pixelated/adapter/pixelated_mail.py b/service/pixelated/adapter/pixelated_mail.py index 97adc964..fd03ea48 100644 --- a/service/pixelated/adapter/pixelated_mail.py +++ b/service/pixelated/adapter/pixelated_mail.py @@ -30,7 +30,7 @@ class PixelatedMail: def from_leap_mail(leap_mail, leap_mail_collection=None): mail = PixelatedMail() mail.leap_mail = leap_mail - mail.leap_mail._collection = leap_mail_collection #Work around until they fix the issue of mails not having the collection set on a LeapMailbox + mail.leap_mail._collection = leap_mail_collection # Work around until they fix the issue of mails not having the collection set on a LeapMailbox mail.body = leap_mail.bdoc.content['raw'] mail.headers = mail._extract_headers() mail.date = PixelatedMail._get_date(mail.headers) |