fixed syntax error in examples/gunicorn_rc.

This commit is contained in:
siznax 2015-02-26 15:56:32 -08:00
parent 5eff21ff0f
commit b054b7e91c

View File

@ -6,7 +6,7 @@ PID=/var/run/gunicorn.pid
APP=main:application
if [ -f $PID ]; then rm $PID fi
if [ -f $PID ]; then rm $PID; fi
cd $ROOT
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pidfile=$PID $APP
exec $GUNICORN -c $ROOT/gunicorn.conf.py --pid=$PID $APP