From: Bryan Date: Wed, 4 Dec 2013 03:22:34 +0000 (-0500) Subject: fixing typos X-Git-Tag: release-20150131~386^2~28 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=257f904fb8cef9490c5359b0f077962d36fc5f32;p=oweals%2Fkarmaworld.git fixing typos --- 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():