Ask Solem 11 years ago
parent
commit
c1caa959e5
1 changed files with 3 additions and 2 deletions
  1. 3 2
      celery/app/builtins.py

+ 3 - 2
celery/app/builtins.py

@@ -307,8 +307,9 @@ def add_chord_task(app):
         accept_magic_kwargs = False
         ignore_result = False
 
-        def run(self, header, body, partial_args=(), interval=None, countdown=1,
-                max_retries=None, propagate=None, eager=False, **kwargs):
+        def run(self, header, body, partial_args=(), interval=None,
+                countdown=1, max_retries=None, propagate=None,
+                eager=False, **kwargs):
             propagate = default_propagate if propagate is None else propagate
             group_id = uuid()
             AsyncResult = self.app.AsyncResult