From ca77ed6f64c74ee255e18a6fcd968c2a1d2c087c Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 10 Feb 2011 10:18:58 -0500 Subject: [PATCH] documentation url style update --- fabfile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fabfile.py b/fabfile.py index 391bf92..e2b0f8d 100644 --- a/fabfile.py +++ b/fabfile.py @@ -9,8 +9,8 @@ def scrub(): def docs(): """Build docs.""" - os.system('make html') - os.chdir('_build/html') + os.system('make dirhtml') + os.chdir('_build/dirhtml') os.system('sphinxtogithub .') os.system('git add -A') os.system('git commit -m \'documentation update\'')