From: George Dunlap Date: Fri, 9 Oct 2020 11:26:48 +0000 (+0100) Subject: Specify the master document X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d018eeae901406e5fa4fbb2243063bd64f46aa9e;p=governance.git Specify the master document Apparently older versions of sphinx default to the master document to be 'contents' rather than 'index'. Specify this so that we can build with older versions of sphinx (specifically, the one currently on xenbits). Signed-off-by: George Dunlap --- diff --git a/source/conf.py b/source/conf.py index b63b196..704dfe3 100644 --- a/source/conf.py +++ b/source/conf.py @@ -14,6 +14,8 @@ # import sys # sys.path.insert(0, os.path.abspath('.')) +master_doc = 'index' + # -- Project information -----------------------------------------------------