From e361f18ce9250e8bc1966636e3baf57d64bf91ce Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Tue, 30 Dec 2014 23:27:30 +1100 Subject: [PATCH] * Fix docs command in fabfile --- fabfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index f5f77a9d8..58a7f0faf 100644 --- a/fabfile.py +++ b/fabfile.py @@ -15,8 +15,8 @@ def clean(): def docs(): - local('sphinx-build -b html docs/ .') - + with lcd('docs'): + local('make html') def test(): local('py.test -x')