Browse Source

Fixed options being passed in celeryd

Ben Firshman 16 years ago
parent
commit
1369ce2cae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bin/celeryd

+ 1 - 1
bin/celeryd

@@ -4,4 +4,4 @@ from celery.bin.celeryd import run_worker, parse_options
 
 if __name__ == "__main__":
     options = parse_options(sys.argv[1:])
-    run_worker(**options)
+    run_worker(**vars(options))