From: W. Trevor King Date: Sat, 10 May 2014 15:55:21 +0000 (-0700) Subject: doc/conf.py: Remove _static from html_static_path X-Git-Tag: 0.18.1~18 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=ebf4aaa0f8e6e9e1ead07268a060ea22dcc46ad0 doc/conf.py: Remove _static from html_static_path Avoid: $ make HAVE_SPHINX=1 sphinx-html python ./doc/mkdocdeps.py ./doc doc/_build doc/docdeps.mk sphinx-build -b html -d doc/_build/doctrees -q ./doc doc/_build/html Making output directory... WARNING: html_static_path entry '/home/wking/src/notmuch/notmuch/doc/_static' does not exist because we have no static source in doc/_static. --- diff --git a/doc/conf.py b/doc/conf.py index a926fe42..70ba1b8a 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -42,7 +42,7 @@ html_theme = 'default' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = [] # Output file base name for HTML help builder. htmlhelp_basename = 'notmuchdoc'