From cdecdb670652ad33acf932cc8454e74b9c07e30f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benoit=20Gr=C3=A9goire?= Date: Wed, 1 Apr 2015 18:08:44 -0400 Subject: [PATCH] fabfile. Fix copy-paste error, time to go home... --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 47d5eea29a..4e0a794bd1 100644 --- a/fabfile.py +++ b/fabfile.py @@ -75,7 +75,7 @@ def supervisor_process_start(process_name): exit() else: print(red('Supervisord doesn\'t seem to be running, trying to start it')) - supervisord_cmd_result = venvcmd("supervisord -c %s update" % os.path.join(env.projectpath, "supervisord.conf")) + supervisord_cmd_result = venvcmd("supervisord -c %s" % os.path.join(env.projectpath, "supervisord.conf")) if supervisord_cmd_result.failed: print(red('Failed starting supervisord')) exit()