瀏覽代碼

fix a missing quote in the daemonization initialization

ernop 13 年之前
父節點
當前提交
ebb59e5feb
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/cookbook/daemonizing.rst

+ 1 - 1
docs/cookbook/daemonizing.rst

@@ -128,7 +128,7 @@ environment's python interpreter::
     CELERYD_MULTI="$ENV_PYTHON $CELERYD_CHDIR/manage.py celeryd_multi"
 
     # How to call "manage.py celeryctl"
-    CELERYCTL=$ENV_PYTHON $CELERYD_CHDIR/manage.py celeryctl"
+    CELERYCTL="$ENV_PYTHON $CELERYD_CHDIR/manage.py celeryctl"
     
     # Extra arguments to celeryd
     CELERYD_OPTS="--time-limit=300 --concurrency=8"