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.
This commit is contained in:
Jocelyn Delalande 2017-03-29 15:36:04 +02:00
parent 95d0c71827
commit 4799fcb34f

View file

@ -16,5 +16,4 @@ pygments_style = 'sphinx'
sys.path.append(os.path.abspath('_themes')) sys.path.append(os.path.abspath('_themes'))
html_theme_path = ['_themes'] html_theme_path = ['_themes']
html_theme = 'pelican' html_theme = 'pelican'
html_static_path = ['_static']
html_theme_options = { 'nosidebar': True } html_theme_options = { 'nosidebar': True }