From 0a25ca692280ad284014f5550af04d9f0f055982 Mon Sep 17 00:00:00 2001 From: Frederik Hennig <frederik.hennig@fau.de> Date: Tue, 14 Jan 2025 12:47:16 +0100 Subject: [PATCH] fix error message --- noxfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/noxfile.py b/noxfile.py index 6797b0687..18b533554 100644 --- a/noxfile.py +++ b/noxfile.py @@ -58,7 +58,7 @@ def check_external_doc_dependencies(session: nox.Session): except FileNotFoundError: session.error( "Unable to build documentation: " - "command `dot` from the `graphviz` package (https://www.graphviz.org/) could not be found." + "Command `dot` from the `graphviz` package (https://www.graphviz.org/) is not available" ) -- GitLab