From 257f904fb8cef9490c5359b0f077962d36fc5f32 Mon Sep 17 00:00:00 2001 From: Bryan Date: Tue, 3 Dec 2013 22:22:34 -0500 Subject: [PATCH] fixing typos --- fabfile.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fabfile.py b/fabfile.py index 5eea3ea..41ac5a9 100644 --- a/fabfile.py +++ b/fabfile.py @@ -15,8 +15,8 @@ env.proj_repo = 'git@github.com:FinalsClub/karmaworld.git' env.repo_root = '~/karmaworld' env.proj_root = '/var/www/karmaworld' env.branch = 'prod' -env.code_root = proj_root -env.env_root = proj_root +env.code_root = env.proj_root +env.env_root = env.proj_root env.supervisor_conf = '{0}/confs/{1}/supervisord.conf'.format(env.code_root, env.branch) ######## Define host(s) @@ -125,7 +125,7 @@ def make_virtualenv(): """ Create our Virtualenv """ - run('virtualenv {0}'.format(virtenv_path()) + run('virtualenv {0}'.format(virtenv_path())) @task def start_supervisord(): -- 2.25.1