From 55ad48f0e657635273736428e3c145361487e5db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20Silkeb=C3=A6kken?= Date: Fri, 8 Feb 2013 17:32:23 +0100 Subject: [PATCH] Update sphinx configuration --- docs/source/conf.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index be00d779..bb86ae6f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -1,8 +1,9 @@ # -*- coding: utf-8 -*- -import sys, os +import os +import sys -sys.path.insert(0, os.path.abspath('../powerline')) +sys.path.insert(0, os.path.abspath('../..')) extensions = ['sphinx.ext.autodoc', 'sphinx.ext.todo', 'sphinx.ext.coverage', 'sphinx.ext.viewcode'] source_suffix = '.rst' @@ -13,5 +14,5 @@ version = 'beta' release = 'beta' exclude_patterns = ['_build'] pygments_style = 'sphinx' -html_theme = 'nature' +html_theme = 'default' html_static_path = ['_static']