Ask Solem 15 years ago
parent
commit
9ec1e95341
2 changed files with 2 additions and 3 deletions
  1. 1 2
      celery/contrib/test_runner.py
  2. 1 1
      celery/task/base.py

+ 1 - 2
celery/contrib/test_runner.py

@@ -2,10 +2,9 @@ from django.conf import settings
 from django.test.simple import run_tests as run_tests_orig
 
 USAGE = """\
-Custom test runner to allow testing of celery .delay() tasks.
+Custom test runner to allow testing of celery delayed tasks.
 """
 
 def run_tests(test_labels, *args, **kwargs):
     settings.CELERY_ALWAYS_EAGER = True
     return run_tests_orig(test_labels, *args, **kwargs)
-

+ 1 - 1
celery/task/base.py

@@ -121,7 +121,7 @@ class Task(object):
         ``settings.SEND_CELERY_ERROR_EMAILS`` is on.)
 
     .. attribute:: serializer
-        The name of a serializer that has been registered with 
+        The name of a serializer that has been registered with
         :mod:`carrot.serialization.registry`. Example: ``"json"``.
 
     .. attribute:: backend