Removed the env.run variable, because it's not needed.
authorLucian Ursu <lucian.ursu@gmail.com>
Fri, 22 Feb 2013 13:41:09 +0000 (15:41 +0200)
committerLucian Ursu <lucian.ursu@gmail.com>
Fri, 22 Feb 2013 13:41:09 +0000 (15:41 +0200)
fabfile.py

index 22854664af12af7d56d47d921e371ddab5211a99..37435c59f62fa9159c330d5a4e1c067bf139f507 100755 (executable)
@@ -3,14 +3,13 @@
 import os
 from contextlib import contextmanager as _contextmanager
 
-from fabric.api import cd, env, local, prefix, run, settings, task
+from fabric.api import cd, env, prefix, run, settings, task
 
 
 ########## GLOBALS
 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
 
 
@@ -62,7 +61,7 @@ def syncdb():
 @task
 def collectstatic():
     """Collect all static files, and copy them to S3 for production usage."""
-    local('%(run)s collectstatic --noinput' % env)
+    run('python manage.py collectstatic --noinput')
 ########## END FILE MANAGEMENT