Explorar el Código

Merge pull request #3285 from bbgwilbur/master

Fix typo in worker.py
Ask Solem hace 8 años
padre
commit
0140a47b2d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      celery/bin/worker.py

+ 1 - 1
celery/bin/worker.py

@@ -340,7 +340,7 @@ class worker(Command):
         user_options = self.app.user_options['worker']
         if user_options:
             uopts = OptionGroup(parser, 'User Options')
-            uopts.options_list.extend(user_options)
+            uopts.option_list.extend(user_options)
             parser.add_option_group(uopts)