* Fix docs command in fabfile

This commit is contained in:
Matthew Honnibal 2014-12-30 23:27:30 +11:00
parent 1a075f77ff
commit e361f18ce9

4
fabfile.py vendored
View File

@ -15,8 +15,8 @@ def clean():
def docs(): def docs():
local('sphinx-build -b html docs/ .') with lcd('docs'):
local('make html')
def test(): def test():
local('py.test -x') local('py.test -x')