-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring imports for Python3 support; refactoring unicode payload
handling. Refs #13.
- Loading branch information
Adam Coddington
committed
Apr 24, 2014
1 parent
ff68e56
commit b4c335c
Showing
3 changed files
with
23 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
django_mailbox/tests/messages/message_with_invalid_content_for_declared_encoding.eml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Date: Fri, 30 Jan 2012 11:30:01 PST | ||
Subject: Tjest | ||
Subject: Tjest Wrong | ||
From: "Somebody" <[email protected]> | ||
To: [email protected] | ||
MIME-Version: 1.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,6 @@ | |
'django_mailbox.tests', | ||
], | ||
install_requires=[ | ||
'six' | ||
'six>=1.6.1' | ||
] | ||
) |