From 210973abbc9eb85848ad9b796a441296006887ee Mon Sep 17 00:00:00 2001 From: Andrei Pavel Date: Mon, 17 May 2021 13:08:24 +0300 Subject: [PATCH] [#1560] add_css_file for sphinx >= v4 --- doc/sphinx/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sphinx/conf.py b/doc/sphinx/conf.py index e890933854..016ea8ed73 100644 --- a/doc/sphinx/conf.py +++ b/doc/sphinx/conf.py @@ -238,6 +238,6 @@ def run_generate_docs(_): # custom setup hook def setup(app): - app.add_stylesheet('kea.css') + app.add_css_file('kea.css') app.connect('builder-inited', run_generate_docs)