1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
From: Christian Bayle <bayle@debian.org>
Date: Sun, 16 Mar 2025 09:14:35 +0100
Subject: fix-sphinx-call
Forwarded: not-needed
Upstream builds for python <=3.9 where this doesn't apply.
---
docs/conf.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/conf.py b/docs/conf.py
index e2f0914..588443a 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -189,7 +189,7 @@ def setup(app):
app.connect('autodoc-process-docstring', fixDocstring)
app.connect('autodoc-process-signature', fixSignature)
app.connect('autodoc-skip-member', skipMember)
- app.add_stylesheet('css/custom.css')
+ app.add_css_file('css/custom.css')
# -- General configuration ------------------------------------------------
|