diff options
| author | Donald Stufft <donald@stufft.io> | 2014-12-05 22:42:31 -0500 |
|---|---|---|
| committer | Donald Stufft <donald@stufft.io> | 2014-12-05 22:42:31 -0500 |
| commit | 35a1f2afa8bfeda606b86404fd480e7a1a92ca14 (patch) | |
| tree | a40d6f11d88a053501dd95244de16c313aea4835 | |
| parent | 64e926bc59fd814e9fcb2c253da21cf5dd181014 (diff) | |
| download | py-bcrypt-git-35a1f2afa8bfeda606b86404fd480e7a1a92ca14.tar.gz | |
Remove unicode_literals, it doesn't play well with distutils
| -rw-r--r-- | bcrypt/__init__.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bcrypt/__init__.py b/bcrypt/__init__.py index 392cdb3..8cd02f6 100644 --- a/bcrypt/__init__.py +++ b/bcrypt/__init__.py @@ -15,7 +15,6 @@ # limitations under the License. from __future__ import absolute_import from __future__ import division -from __future__ import unicode_literals import binascii import os |
