mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-10 06:48:19 +02:00
Fixing another CI error
This commit is contained in:
parent
bc7df4540a
commit
8da4e71090
1 changed files with 1 additions and 1 deletions
|
|
@ -94,7 +94,7 @@ class GmailTransport(EmailTransport):
|
||||||
size = metadata.split('(')[1].split(' ')[3]
|
size = metadata.split('(')[1].split(' ')[3]
|
||||||
if int(size) <= int(self.MAX_MSG_SIZE):
|
if int(size) <= int(self.MAX_MSG_SIZE):
|
||||||
safe_message_ids.append(uid)
|
safe_message_ids.append(uid)
|
||||||
except ValueError, e:
|
except ValueError as e:
|
||||||
# print "ValueError: %s working on %s" % (e, each_msg[0])
|
# print "ValueError: %s working on %s" % (e, each_msg[0])
|
||||||
# print each_msg
|
# print each_msg
|
||||||
pass
|
pass
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue