From fe2c74cb1aaba82a1bc085005ba39e0c6beb0748 Mon Sep 17 00:00:00 2001 From: Sandro Tosi Date: Tue, 7 Jun 2022 14:43:34 -0400 Subject: [PATCH] Update location of `usage.rst` to fix manpage compilation `usage.rst` has been moved from `doc/en` to `doc/en/how-to`, so the `man_pages` configuration value needs to be updated to the new location, so that we dont get this warning: writing... WARNING: "man_pages" config value references unknown document usage --- doc/en/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/conf.py b/doc/en/conf.py index 5aedd2d32..0022363b2 100644 --- a/doc/en/conf.py +++ b/doc/en/conf.py @@ -320,7 +320,7 @@ latex_domain_indices = False # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). -man_pages = [("usage", "pytest", "pytest usage", ["holger krekel at merlinux eu"], 1)] +man_pages = [("how-to/usage", "pytest", "pytest usage", ["holger krekel at merlinux eu"], 1)] # -- Options for Epub output ---------------------------------------------------