* Fix clean command

This commit is contained in:
Matthew Honnibal 2015-01-25 14:49:29 +11:00
parent 7588adf5e7
commit e2ea0fb47a

2
fabfile.py vendored
View File

@ -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():