Ask Solem 10 years ago
parent
commit
792a23184e
2 changed files with 1 additions and 2 deletions
  1. 0 2
      celery/app/builtins.py
  2. 1 0
      celery/backends/riak.py

+ 0 - 2
celery/app/builtins.py

@@ -166,13 +166,11 @@ def add_chain_task(app):
     return chain
 
 
-
 @connect_on_app_finalize
 def add_chord_task(app):
     """No longer used, but here for backwards compatibility."""
     from celery import group, chord as _chord
     from celery.canvas import maybe_signature
-    _app = app
 
     @app.task(name='celery.chord', bind=True, ignore_result=False,
               shared=False, lazy=False)

+ 1 - 0
celery/backends/riak.py

@@ -26,6 +26,7 @@ E_BUCKET_NAME = """\
 Riak bucket names must be composed of ASCII characters only, not: {0!r}\
 """
 
+
 def is_ascii(s):
     try:
         s.decode('ascii')