forked from extern/django-helpdesk
Fix import error on python 3
"from email.utils import parseaddr, collapse_rfc2231_value" works both for python 2.7 and python 3
This commit is contained in:
parent
0837643c17
commit
f8044faf28
@ -20,7 +20,7 @@ import socket
|
|||||||
|
|
||||||
from datetime import timedelta
|
from datetime import timedelta
|
||||||
from email.header import decode_header
|
from email.header import decode_header
|
||||||
from email.Utils import parseaddr, collapse_rfc2231_value
|
from email.utils import parseaddr, collapse_rfc2231_value
|
||||||
from optparse import make_option
|
from optparse import make_option
|
||||||
|
|
||||||
from email_reply_parser import EmailReplyParser
|
from email_reply_parser import EmailReplyParser
|
||||||
|
Loading…
Reference in New Issue
Block a user