Added missing env.run to fabfile.py
authorbobcall <bob@bobcall.me>
Wed, 16 Jan 2013 12:46:16 +0000 (07:46 -0500)
committerbobcall <bob@bobcall.me>
Wed, 16 Jan 2013 12:46:16 +0000 (07:46 -0500)
fabfile.py

index 56d57a87fca92b18ed35fc648bbfa723af1cf6f2..90fa97732dfbb8a4518e3d40b52008b52ca36ad7 100755 (executable)
@@ -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