From 3e25eeb9b2c67473ed1513fa1c6aad0ab68f9edc Mon Sep 17 00:00:00 2001 From: Guillaume Lambert Date: Tue, 2 Feb 2021 15:35:50 +0100 Subject: [DOC] Fix sphinx add_stylesheet deprecated method by using add_css_file instead Issue-ID: DOC-692 Signed-off-by: Guillaume Lambert Change-Id: Ib8af980dc116fc551ca180c28cfb658bb6f86299 --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/conf.py') diff --git a/docs/conf.py b/docs/conf.py index 33552e829..296ef99b0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -99,7 +99,7 @@ linkcheck_ignore = [ html_last_updated_fmt = '%d-%b-%y %H:%M' def setup(app): - app.add_stylesheet("css/ribbon.css") + app.add_css_file("css/ribbon.css") from docutils.parsers.rst import directives -- cgit 1.2.3-korg