1
0
Fork 1
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:
Alex Lovell-Troy 2014-05-27 15:17:27 -06:00
parent bc7df4540a
commit 8da4e71090

View file

@ -94,7 +94,7 @@ class GmailTransport(EmailTransport):
size = metadata.split('(')[1].split(' ')[3]
if int(size) <= int(self.MAX_MSG_SIZE):
safe_message_ids.append(uid)
except ValueError, e:
except ValueError as e:
# print "ValueError: %s working on %s" % (e, each_msg[0])
# print each_msg
pass