master
Tomáš Mládek 2021-09-19 13:32:50 +02:00
parent 8915a36b3d
commit 0edc9a7ab4
1 changed files with 15 additions and 18 deletions

View File

@ -128,25 +128,22 @@ class KollagenBot:
num_images = ["-n", args.num_images] if args.num_images else [] num_images = ["-n", args.num_images] if args.num_images else []
with NamedTemporaryFile(suffix=".png") as ntf: with NamedTemporaryFile(suffix=".png") as ntf:
self.logger.debug( shell_cmd_line = [
f"Running: " self.kollagen_path,
+ str( "-r",
[ *directories,
self.kollagen_path, "-w",
"-r", args.width,
*directories, "-h",
"-w", args.height,
args.width, *mode,
"-h", *num_images,
args.height, "-o",
*mode, ntf.name,
"-o", ]
ntf.name, self.logger.debug(f"Running: " + str(shell_cmd_line))
]
)
)
subprocess.run( subprocess.run(
[self.kollagen_path, "-r", *directories, *mode, "-o", ntf.name], shell_cmd_line,
check=True, check=True,
capture_output=True, capture_output=True,
) )