Skip to content

Commit 80e63fc

Browse files
author
Release Manager
committed
gh-41252: Fix formatting of warning message in meson.build <!-- ^ Please provide a concise and informative title. --> <!-- ^ Don't put issue numbers in the title, do this in the PR description below. --> <!-- ^ For example, instead of "Fixes #12345" use "Introduce new method to calculate 1 + 2". --> <!-- v Describe your changes below in detail. --> <!-- v Why is this change required? What problem does it solve? --> <!-- v If this PR resolves an open issue, please link to it here. For example, "Fixes #12345". --> Otherwise CI fails on every PR. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [ ] The title is concise and informative. - [ ] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [ ] I have created tests covering the changes. - [ ] I have updated the documentation and checked the documentation preview. ### ⌛ Dependencies <!-- List all open PRs that this PR logically depends on. For example, --> <!-- - #12345: short description why this is a dependency --> <!-- - #34567: ... --> URL: #41252 Reported by: Tobias Diez Reviewer(s): Chenxin Zhong
2 parents 85e1638 + a541717 commit 80e63fc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/doc/meson.build

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ if not get_option('build-docs')
22
subdir_done()
33
endif
44

5-
warning('Documentation building enabled, generating targets may be slow. To disable this, pass -Dbuild-docs=false.')
5+
warning(
6+
'Documentation building enabled, generating targets may be slow. To disable this, pass -Dbuild-docs=false.',
7+
)
68

79
sphinx_check = py_module.find_installation(required: false, modules: ['sphinx'])
810
if not sphinx_check.found()

0 commit comments

Comments
 (0)