From 2955ba4754907f6e4976990cd88d39204c00170a Mon Sep 17 00:00:00 2001 From: Eric Holscher <25510+ericholscher@users.noreply.github.com> Date: Sun, 22 Mar 2020 12:10:31 -0700 Subject: [PATCH] Fix custom.css include This should be a list: https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_css_files --- docs/source/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index aeb81cd146..fafe8db5c8 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -115,7 +115,7 @@ # Output file base name for HTML help builder. htmlhelp_basename = 'BraveBrowserdoc' -html_css_files = '_static/custom.css' +html_css_files = ['_static/custom.css'] # -- Options for LaTeX output ------------------------------------------------ @@ -169,4 +169,4 @@ ] def setup(app): - app.add_stylesheet('custom.css') \ No newline at end of file + app.add_stylesheet('custom.css')