# HG changeset patch # User Brian Neal # Date 1342977927 18000 # Node ID 35f0904d4bd504e5b4275b491e9b699b5c203b1b # Parent af403a9f4fb763fc44d9685f8b12d0c6ef1abcc1 Update the collectstatic command for Django 1.4 directory layout. diff -r af403a9f4fb7 -r 35f0904d4bd5 fabfile.py --- a/fabfile.py Sun Jul 22 12:06:40 2012 -0500 +++ b/fabfile.py Sun Jul 22 12:25:27 2012 -0500 @@ -1,8 +1,7 @@ from fabric.api import cd, run PYTHON = '/home/var/django-sites/virtualenvs/sg101/bin/python' -WC_DIR = '/home/var/django-sites/virtualenvs/sg101/sg101' -PROJ_DIR = WC_DIR + '/sg101' +PROJ_DIR = '/home/var/django-sites/virtualenvs/sg101/sg101' def update(): """ @@ -19,7 +18,7 @@ """ cmd = ('%s manage.py collectstatic ' - '--settings=settings.production --noinput') % PYTHON + '--settings=sg101.settings.production --noinput') % PYTHON with cd(PROJ_DIR): run(cmd)