From 425ca107bd805dda906b62fc2b03a6f3c815b8a1 Mon Sep 17 00:00:00 2001 From: Aric Gardner Date: Thu, 5 Sep 2019 20:51:51 -0400 Subject: [PATCH] Add master_doc value index to conf.py Not sure why but read the docs is throwing an error: Running Sphinx v1.8.5 loading translations [en]... done making output directory... building [mo]: targets for 0 po files that are out of date building [readthedocs]: targets for 5 source files that are out of date updating environment: 5 added, 0 changed, 0 removed reading sources... [ 20%] config-deploy reading sources... [ 40%] developer-guide reading sources... [ 60%] index reading sources... [ 80%] overview reading sources... [100%] release-notes Sphinx error: master file /home/docs/checkouts/readthedocs.org/user_builds\ /o-ran-sc-portal-ric-dashboard-test/checkouts/master/docs/contents.rst not found I think this will fix it.. (just a quick google didnt look too hard) Signed-off-by: Aric Gardner Change-Id: If56b5da595b47461111a03ef88e7178b85dc1f00 --- docs/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/conf.py b/docs/conf.py index 4651a2b8..592a5736 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1 +1,2 @@ from docs_conf import * +master_doc = 'index' -- 2.16.6