We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc5dc98 commit 3150ee8Copy full SHA for 3150ee8
doc/manual/source/conf.py
@@ -20,6 +20,7 @@
20
import os
21
import sys
22
import time
23
+import importlib
24
25
sys.path.insert(0, os.path.abspath('../../..'))
26
@@ -126,6 +127,8 @@
126
127
# a list of builtin themes.
128
#
129
html_theme = 'sphinx_py3doc_enhanced_theme'
130
+tmod = importlib.import_module(html_theme)
131
+html_theme_path = [tmod.get_html_theme_path()]
132
133
# Theme options are theme-specific and customize the look and feel of a theme
134
# further. For a list of options available for each theme, see the
0 commit comments