summaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
authorGuillaume Lambert <guillaume.lambert@orange.com>2021-02-02 15:35:50 +0100
committerGuillaume Lambert <guillaume.lambert@orange.com>2021-02-02 15:58:38 +0100
commit3e25eeb9b2c67473ed1513fa1c6aad0ab68f9edc (patch)
treef78f4a4cb066b6229c35f39a384cdd907d14ed9f /docs/conf.py
parent5b9d80a4e9175cfd6bd7f2be33c540053f726005 (diff)
[DOC] Fix sphinx add_stylesheet deprecated method
by using add_css_file instead Issue-ID: DOC-692 Signed-off-by: Guillaume Lambert <guillaume.lambert@orange.com> Change-Id: Ib8af980dc116fc551ca180c28cfb658bb6f86299
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py2
1 files changed, 1 insertions, 1 deletions
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