Skip to content

Commit

Permalink
Python3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
eberloso committed Jan 17, 2019
1 parent fea6abd commit 11bd61a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion qreu/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,13 @@
from email.mime.text import MIMEText
from email.utils import formatdate
from datetime import datetime
from StringIO import StringIO

from html2text import html2text
from six import PY2
if PY2:
from StringIO import StringIO
else:
from io import StringIO

import re

Expand Down

0 comments on commit 11bd61a

Please sign in to comment.