From e2ea0fb47a516a99209607e49c86bfcc1b5acf80 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 25 Jan 2015 14:49:29 +1100 Subject: [PATCH] * Fix clean command --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index 2520693c0..9a2236e77 100644 --- a/fabfile.py +++ b/fabfile.py @@ -47,7 +47,7 @@ def make(): def clean(): with lcd(path.dirname(__file__)): - local('python dev_setup.py clean --all') + local('python setup.py clean --all') def test():