diff options
author | Ask Solem <ask@celeryproject.org> | 2016-04-06 13:14:05 -0700 |
---|---|---|
committer | Ask Solem <ask@celeryproject.org> | 2016-04-06 13:14:05 -0700 |
commit | b3741774735daa205edd3fbe29e74f8bbec296ee (patch) | |
tree | 2c0bb51c209c94a6c34afc7ce0381ae580c74563 /kombu/compat.py | |
parent | 646ef049b46a9f61748d663edb40a47fe1fc08d4 (diff) | |
download | kombu-b3741774735daa205edd3fbe29e74f8bbec296ee.tar.gz |
Use unicode_litereals everywhere and updates flakeplus target to --2.7
Diffstat (limited to 'kombu/compat.py')
-rw-r--r-- | kombu/compat.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kombu/compat.py b/kombu/compat.py index e86ac0f5..66c7a6d0 100644 --- a/kombu/compat.py +++ b/kombu/compat.py @@ -7,7 +7,7 @@ Carrot compatible interface for :class:`Publisher` and :class:`Producer`. See http://packages.python.org/pypi/carrot for documentation. """ -from __future__ import absolute_import +from __future__ import absolute_import, unicode_literals from itertools import count |