Browse Source

fix a missing quote in the daemonization initialization

ernop 13 years ago
parent
commit
ebb59e5feb
1 changed files with 1 additions and 1 deletions
  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"