From cc14739d3b3074b2209a157597065a39db186bc4 Mon Sep 17 00:00:00 2001 From: Miguel Bernal Marin Date: Tue, 30 May 2017 10:55:33 -0500 Subject: [PATCH] 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. --- source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/conf.py b/source/conf.py index bf0ec690..ddaa0248 100644 --- a/source/conf.py +++ b/source/conf.py @@ -294,4 +294,4 @@ texinfo_documents = [ #texinfo_no_detailmenu = False # If true, generates permalinks on the HTML output. -html_add_permalinks = False \ No newline at end of file +html_add_permalinks = ""