1
0
Fork 0

Refactoring imports for Python3 support. Fixes #13.

* Refactoring unicode payload handling of mis-encoded payloads.
* Uses six.moves.urllib to find proper urllib versions.
This commit is contained in:
Adam Coddington 2014-04-24 15:28:54 -07:00
parent ff68e564d5
commit 002e33bd95
4 changed files with 28 additions and 17 deletions

View file

@ -41,6 +41,6 @@ setup(
'django_mailbox.tests',
],
install_requires=[
'six'
'six>=1.6.1'
]
)