pep8: Add compliance with rule E261 to email_mirror.py.

This commit is contained in:
Aditya Bansal
2017-05-07 20:45:02 +05:30
committed by Tim Abbott
parent f1b2f10574
commit 6a53c53588

View File

@@ -67,7 +67,7 @@ def get_imap_messages():
try:
mbox.select(settings.EMAIL_GATEWAY_IMAP_FOLDER)
try:
status, num_ids_data = mbox.search(None, 'ALL') # type: bytes, List[bytes]
status, num_ids_data = mbox.search(None, 'ALL') # type: bytes, List[bytes]
for msgid in num_ids_data[0].split():
status, msg_data = mbox.fetch(msgid, '(RFC822)')
msg_as_bytes = msg_data[0][1]