summaryrefslogtreecommitdiff
path: root/kombu/compat.py
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2011-09-07 15:21:47 +0100
committerAsk Solem <ask@celeryproject.org>2011-09-07 15:21:47 +0100
commit66ef95038ffb3351592623309119946418c639bf (patch)
treec8189a6f578d6ee9196e1968f6c15be460fbc0bd /kombu/compat.py
parent0b29991566b3d510d39ac61861576ec3e2ef1ae7 (diff)
downloadkombu-66ef95038ffb3351592623309119946418c639bf.tar.gz
2.0-devel: No longer supports Python 2.4
Diffstat (limited to 'kombu/compat.py')
-rw-r--r--kombu/compat.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/kombu/compat.py b/kombu/compat.py
index 5d490475..9da1a3ac 100644
--- a/kombu/compat.py
+++ b/kombu/compat.py
@@ -10,11 +10,12 @@ See http://packages.python.org/pypi/carrot for documentation.
:license: BSD, see LICENSE for more details.
"""
+from __future__ import absolute_import
from itertools import count
-from kombu import entity
-from kombu import messaging
-from kombu.common import entry_to_queue
+from . import entity
+from . import messaging
+from .common import entry_to_queue
def _iterconsume(connection, consumer, no_ack=False, limit=None):