From: Amadeusz Żołnowski Date: Mon, 12 May 2014 10:35:41 +0000 (+0200) Subject: Unset html_static_path in Python bindings docs X-Git-Tag: 0.18.1~17 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=175144f6ad313527e1dfb45b6decedc26d569917 Unset html_static_path in Python bindings docs html_static_path is a kind of source directory and it was set to destination directory (../html) which caused infinite recursion with Sphinx 1.2 and above. --- diff --git a/bindings/python/docs/source/conf.py b/bindings/python/docs/source/conf.py index 9db377f7..5107a96e 100644 --- a/bindings/python/docs/source/conf.py +++ b/bindings/python/docs/source/conf.py @@ -140,7 +140,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 = ['../html'] +html_static_path = [] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format.