1
0
Fork 0

Actually fixing Python 3 support; verified both IMAP and POP3. Fixes #13 (seriously this time).

This commit is contained in:
Adam Coddington 2014-04-25 16:37:51 -07:00
parent 4002d5c222
commit 3b2d60a903
9 changed files with 145 additions and 16 deletions

View file

@ -1,4 +1,7 @@
class GenericFileMailbox(object):
from .base import EmailTransport
class GenericFileMailbox(EmailTransport):
_variant = None
_path = None