We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7776d90 commit e4ba393Copy full SHA for e4ba393
djcelery/management/commands/celery.py
@@ -13,7 +13,7 @@ class Command(CeleryCommand):
13
help = 'celery commands, see celery help'
14
cc_options = CeleryCommand.options if CeleryCommand.options else []
15
base_options = base.get_options() if base.get_options() else []
16
- preload_options = getattr(base, 'preload_options', []) or []
+ preload_options = list(getattr(base, 'preload_options', [])) or []
17
options = cc_options + base_options + preload_options
18
19
def run_from_argv(self, argv):
0 commit comments