aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-09-02 17:29:20 -0400
committerDavid Robillard <d@drobilla.net>2023-09-22 23:54:50 -0400
commit6c632697fe1ea1255311bb3a0e56574766d182c7 (patch)
treef48047b2df31b1e038e4a5f21fd49021952c80d7 /doc
parent7c164613bf0e5d4a548830267b44a7241ac41c5e (diff)
downloadserd-6c632697fe1ea1255311bb3a0e56574766d182c7.tar.gz
serd-6c632697fe1ea1255311bb3a0e56574766d182c7.tar.bz2
serd-6c632697fe1ea1255311bb3a0e56574766d182c7.zip
Clean up meson formatting
Formatted automatically with muon, with some manual changes to make things format more nicely.
Diffstat (limited to 'doc')
-rw-r--r--doc/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/meson.build b/doc/meson.build
index 0a706dc2..e1e2b918 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -33,7 +33,8 @@ if build_docs
# Warn if the "official" theme isn't present
pymod = import('python')
doc_modules = ['sphinx_lv2_theme']
- if not pymod.find_installation('python3', modules: doc_modules, required: false).found()
+ py = pymod.find_installation('python3', modules: doc_modules, required: false)
+ if not py.found()
warning('Missing sphinx_lv2_theme module, falling back to alabaster')
endif