Browse Source

Use kombu top-level refs

Ask Solem 12 years ago
parent
commit
495f5f5e84
3 changed files with 3 additions and 3 deletions
  1. 1 1
      celery/app/task.py
  2. 1 1
      docs/reference/celery.app.amqp.rst
  3. 1 1
      docs/reference/celery.rst

+ 1 - 1
celery/app/task.py

@@ -444,7 +444,7 @@ class Task(object):
         :keyword publisher: Deprecated alias to ``producer``.
 
         Also supports all keyword arguments supported by
-        :meth:`kombu.messaging.Producer.publish`.
+        :meth:`kombu.Producer.publish`.
 
         .. note::
             If the :setting:`CELERY_ALWAYS_EAGER` setting is set, it will

+ 1 - 1
docs/reference/celery.app.amqp.rst

@@ -13,7 +13,7 @@
         .. attribute:: Connection
 
             Broker connection class used.  Default is
-            :class:`kombu.connection.Connection`.
+            :class:`kombu.Connection`.
 
         .. attribute:: Consumer
 

+ 1 - 1
docs/reference/celery.rst

@@ -264,7 +264,7 @@ Application
         :keyword transport: defaults to the :setting:`BROKER_TRANSPORT`
                  setting.
 
-        :returns :class:`kombu.connection.Connection`:
+        :returns :class:`kombu.Connection`:
 
     .. method:: Celery.connection_or_acquire(connection=None)