]> git.notmuchmail.org Git - notmuch/commitdiff
Unset html_static_path in Python bindings docs
authorAmadeusz Żołnowski <aidecoe@aidecoe.name>
Mon, 12 May 2014 10:35:41 +0000 (12:35 +0200)
committerDavid Bremner <david@tethera.net>
Wed, 28 May 2014 12:46:02 +0000 (09:46 -0300)
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.

bindings/python/docs/source/conf.py

index 9db377f78733c0166ebe08ee25390265d19c71e5..5107a96ea2f4c32769bcca760072300a50113ea4 100644 (file)
@@ -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.