Marin Atanasov Nikolov 10 年之前
父節點
當前提交
0eb5f70a0e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      celery/app/base.py

+ 1 - 1
celery/app/base.py

@@ -168,7 +168,7 @@ class Celery(object):
         if not isinstance(self._tasks, TaskRegistry):
             self._tasks = TaskRegistry(self._tasks or {})
 
-        # If the class defins a custom __reduce_args__ we need to use
+        # If the class defines a custom __reduce_args__ we need to use
         # the old way of pickling apps, which is pickling a list of
         # args instead of the new way that pickles a dict of keywords.
         self._using_v1_reduce = app_has_custom(self, '__reduce_args__')