Ask Solem 12 years ago
parent
commit
31918d7760
2 changed files with 3 additions and 2 deletions
  1. 2 1
      celery/app/builtins.py
  2. 1 1
      celery/bin/camqadm.py

+ 2 - 1
celery/app/builtins.py

@@ -81,7 +81,8 @@ def add_unlock_chord_task(app):
         if result.ready():
             subtask(callback).delay(j(propagate=propagate))
         else:
-            return unlock_chord.retry(countdown=interval, max_retries=max_retries)
+            return unlock_chord.retry(countdown=interval,
+                                      max_retries=max_retries)
     return unlock_chord
 
 

+ 1 - 1
celery/bin/camqadm.py

@@ -17,7 +17,7 @@ from itertools import count
 try:
     import amqp
 except ImportError:
-    from amqplib import client_0_8 as amqp
+    from amqplib import client_0_8 as amqp  # noqa
 
 from celery.app import app_or_default
 from celery.utils.functional import padlist