From 4799fcb34f1319615666fb0663bbb6cb12e8a4d1 Mon Sep 17 00:00:00 2001 From: Jocelyn Delalande Date: Wed, 29 Mar 2017 15:36:04 +0200 Subject: [PATCH] Remove unused sphinx option It was triggering a warning : > copying static files... WARNING: html_static_path entry u'/home/jocelyn/dev/ihatemoney/docs/_static' does not exist To my knowledge it was not used, and the _static dir do not even exist. Let me know if I am wrong. --- docs/conf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index 17f693a2..332c3dee 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,5 +16,4 @@ pygments_style = 'sphinx' sys.path.append(os.path.abspath('_themes')) html_theme_path = ['_themes'] html_theme = 'pelican' -html_static_path = ['_static'] html_theme_options = { 'nosidebar': True }