summaryrefslogtreecommitdiffstats
path: root/Documentation/conf.py
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2020-08-03 13:04:50 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-08-04 12:18:29 +0000
commit20245aa622d4224ecd2cdc88438d29f7b5868744 (patch)
treeadd4d06b69d1d06dffeba4eb30a6305fe040c398 /Documentation/conf.py
parente284bd672c13f3f2d01bcecc62a144fcaa2b4314 (diff)
downloadcoreboot-20245aa622d4224ecd2cdc88438d29f7b5868744.tar.gz
coreboot-20245aa622d4224ecd2cdc88438d29f7b5868744.tar.bz2
coreboot-20245aa622d4224ecd2cdc88438d29f7b5868744.zip
Documentation: Fix sphinx configuration
Without the brackets, the string seems to be added as a list of characters, and since there's no extension called 's', sphinx bails out. Change-Id: If0fc9c1a74f334b6154df3cb26836509de913567 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44114 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'Documentation/conf.py')
-rw-r--r--Documentation/conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py
index f82fa0e18295..3180fd972003 100644
--- a/Documentation/conf.py
+++ b/Documentation/conf.py
@@ -48,7 +48,7 @@ try:
except ImportError:
print("Error: Please install sphinxcontrib.ditaa for ASCII art conversion\n")
else:
- extensions += 'sphinxcontrib.ditaa'
+ extensions += ['sphinxcontrib.ditaa']
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.