diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2022-01-10 19:02:30 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2022-01-10 19:04:44 +0900 |
commit | 2a3ea2e490c2d34895e7d18c52943c01bd7ba30b (patch) | |
tree | cb1d001431f585d3b022daa6a1a281c86a711e82 /sphinx/theming.py | |
parent | 87eda92a52e107e9243acac055037c3d6e50819c (diff) | |
download | sphinx-git-2a3ea2e490c2d34895e7d18c52943c01bd7ba30b.tar.gz |
Fix #10061: html theme: Confvals added by themes are not initialized
Diffstat (limited to 'sphinx/theming.py')
-rw-r--r-- | sphinx/theming.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sphinx/theming.py b/sphinx/theming.py index cfbe74b57..819cec377 100644 --- a/sphinx/theming.py +++ b/sphinx/theming.py @@ -208,6 +208,7 @@ class HTMLThemeFactory: try: entry_point = theme_entry_points[name] self.app.registry.load_extension(self.app, entry_point.module) + self.app.config.post_init_values() return except KeyError: pass |