You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
python-execnet/0002-doc-use-a-list-for-htm...

28 lines
858 B

From 7424eab7dec61431646d050d87fd4c88a0bf69aa Mon Sep 17 00:00:00 2001
From: Ken Dreyer <kdreyer@redhat.com>
Date: Mon, 18 Mar 2019 14:25:52 -0600
Subject: [PATCH] doc: use a list for html_sidebars
Sphinx 1.7 deprecated the use of a single string in html_sidebars, and
Sphinx 2.0 has dropped support for this altogether.
---
doc/conf.py | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/doc/conf.py b/doc/conf.py
index f904768..7c049fb 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -98,10 +98,8 @@ html_theme = 'sphinxdoc'
# html_index = 'index.html'
html_sidebars = {
- 'index': 'indexsidebar.html',
+ 'index': ['indexsidebar.html'],
}
-# 'basics': 'indexsidebar.html',
-# }
# html_additional_pages = {'index': 'index.html'}
# Theme options are theme-specific and customize the look and feel of a theme