From 3eae33636cc75bf73cd279306d0cbadb5146b236 Mon Sep 17 00:00:00 2001 From: bobcall Date: Wed, 16 Jan 2013 07:46:16 -0500 Subject: [PATCH] Added missing env.run to fabfile.py --- fabfile.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fabfile.py b/fabfile.py index 56d57a8..90fa977 100755 --- a/fabfile.py +++ b/fabfile.py @@ -11,6 +11,7 @@ from fabric.api import abort, cd, env, local, prefix, run, settings, task env.proj_repo = 'git@github.com:FinalsClub/karmaworld.git' env.virtualenv = 'venv-kw' env.activate = 'workon %s' % env.virtualenv +env.run = './manage.py' ########## END GLOBALS -- 2.25.1