From b84551f78b91a73057aeb2d8be11212f3132fd41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felipe=20Mart=C3=ADn?= Date: Fri, 24 May 2013 12:18:16 +0200 Subject: [PATCH] Fixed fabric script local settings for development not removing correctly --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 0112259..c2f35ea 100644 --- a/fabfile.py +++ b/fabfile.py @@ -175,9 +175,9 @@ def run(): path = getcwd() with settings(hide('warnings', 'running'), warn_only=True): + local('rm ./minecraftcodex/herobrine/local_settings.py') local('ln -s %s/config/development/local_settings.py %s/minecraftcodex/herobrine/local_settings.py' % (path, path)) local('python minecraftcodex/manage.py runserver') - local('rm ./minecraftcodex/herobrine/local_settings.py') def test(): if not active_virtualenv():