summaryrefslogtreecommitdiff
path: root/kombu
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-07-10 18:01:56 +0100
committerAsk Solem <ask@celeryproject.org>2012-07-10 18:01:56 +0100
commit274efd86834d93a4d4804fde21ec6f9f1bdc3810 (patch)
treecfa1ef79424453a8e10b4997cd9d25f260801780 /kombu
parent8a882232098f82baabbae4cba0c0b9f5b456382e (diff)
downloadkombu-274efd86834d93a4d4804fde21ec6f9f1bdc3810.tar.gz
Adds compat messaging.entry_to_queue
Diffstat (limited to 'kombu')
-rw-r--r--kombu/messaging.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/kombu/messaging.py b/kombu/messaging.py
index c441df4c..c177c088 100644
--- a/kombu/messaging.py
+++ b/kombu/messaging.py
@@ -20,6 +20,9 @@ from .utils import maybe_list
__all__ = ['Exchange', 'Queue', 'Producer', 'Consumer']
+# XXX compat attribute
+entry_to_queue = Queue.from_dict
+
class Producer(object):
"""Message Producer.