diff --git a/ckan/lib/cli.py b/ckan/lib/cli.py index 1fbe55bc3fb..4220276fce4 100644 --- a/ckan/lib/cli.py +++ b/ckan/lib/cli.py @@ -1076,7 +1076,7 @@ def run_(self): from ckan.lib.celery_app import celery celery_args = [] if len(self.args) == 2 and self.args[1] == 'concurrency': - celery_args.append['--concurrency=1'] + celery_args.append('--concurrency=1') celery.worker_main(argv=['celeryd', '--loglevel=INFO'] + celery_args) def view(self):