conf.py: fix html_add_permalinks

When compiling documentation a warning message is showed:

WARNING: The config value `html_add_permalinks' has type `bool', defaults to `str'.

The documentation from http://www.sphinx-doc.org/es/stable/config.html
said to set it to None or the empty string to disable permalinks.

Now it is set to empty string and the warning disappear.
This commit is contained in:
Miguel Bernal Marin
2017-05-30 11:14:52 -05:00
parent 366dc83e69
commit cc14739d3b
+1 -1
View File
@@ -294,4 +294,4 @@ texinfo_documents = [
#texinfo_no_detailmenu = False
# If true, generates permalinks on the HTML output.
html_add_permalinks = False
html_add_permalinks = ""