From c5f23b65d41ccedc4e4a1e79a7fa07fb5b57a4a0 Mon Sep 17 00:00:00 2001 From: Florian Spreckelsen <f.spreckelsen@indiscale.com> Date: Tue, 26 Mar 2024 14:18:25 +0100 Subject: [PATCH] FIX: Typo in error message --- src/linkahead/utils/plantuml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/linkahead/utils/plantuml.py b/src/linkahead/utils/plantuml.py index e5432dce..19594d6e 100644 --- a/src/linkahead/utils/plantuml.py +++ b/src/linkahead/utils/plantuml.py @@ -409,7 +409,7 @@ def to_graphics(recordtypes: List[db.Entity], filename: str, raise Exception("An error occured during the execution of " "plantuml when using the format {}. " "Is plantuml installed? " - "You might want to dry a different format.".format(format)) + "You might want to try a different format.".format(format)) # copy only the final product into the target directory shutil.copy(os.path.join(td, filename + "." + extension), output_dirname) -- GitLab