From a6fcad2ee0c731f595fa8ee6451b20062f7639ee Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Sat, 19 Feb 2022 18:32:06 -0800 Subject: [PATCH] Fix root doc for readthedocs The readthedocs is using Sphinx 1.8.6 which still uses the legacy term master_doc for the root toctree. Signed-off-by: Eric Brown --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index cd342ca04..b129ec46c 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -22,7 +22,7 @@ source_suffix = ".rst" # The root toctree document. -root_doc = "index" +master_doc = "index" # General information about the project. project = "Bandit"