Browse Source

cosmetics

Ask Solem 14 years ago
parent
commit
b95c99c6da
1 changed files with 4 additions and 4 deletions
  1. 4 4
      celery/pidbox.py

+ 4 - 4
celery/pidbox.py

@@ -22,10 +22,10 @@ class Mailbox(object):
                                  auto_delete=True,
                                  delivery_mode="transient")
         self.reply_exchange = Exchange("reply.%s.pidbox" % (self.namespace, ),
-                                 type="direct",
-                                 durable=False,
-                                 auto_delete=True,
-                                 delivery_mode="transient")
+                                       type="direct",
+                                       durable=False,
+                                       auto_delete=True,
+                                       delivery_mode="transient")
 
     def publish_reply(self, reply, exchange, routing_key, channel=None):
         chan = channel or self.connection.channel()