Skip to content
Snippets Groups Projects

Refactored the plantuml module

Merged Alexander Schlemmer requested to merge f-refactor-plantuml into dev
2 files
+ 65
2
Compare changes
  • Side-by-side
  • Inline

Files

+ 4
2
@@ -377,7 +377,9 @@ def to_graphics(recordtypes: list[db.Entity], filename: str,
if os.system(cmd) != 0: # TODO: replace with subprocess.run
raise Exception("An error occured during the execution of "
"plantuml. "
"Is plantuml installed?")
"plantuml when using the format {}. "
"Is plantuml installed? "
"You might want to dry a different format.".format(format))
# copy only the final product into the target directory
shutil.copy(os.path.join(td, filename + "." + extension),
output_dirname)
Loading