From a4166d5234ebab859d3dcb3ec5ee5420be0d5135 Mon Sep 17 00:00:00 2001 From: David Coles Date: Sat, 4 Jul 2020 19:21:45 +0000 Subject: [PATCH] Fix favicon Sphinx does not appear to automatically find the favicon anymore. --- conf.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/conf.py b/conf.py index eea67484a6..16481f09ee 100644 --- a/conf.py +++ b/conf.py @@ -206,9 +206,8 @@ rst_epilog = """ html_theme = 'theme' html_theme_path = ['.'] # make sphinx search for themes in current dir -# the favicon has a property to set it in the documentation, but we don't need to use this -# sphinx appears to automatically search in the theme folder and find the file -#html_favicon = './theme/static/images/favicon.ico' +# favicon +html_favicon = './theme/static/images/favicon.ico' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the -- GitLab