From 4f036296d3dc678daaffda1a1a970321dde7fd6c Mon Sep 17 00:00:00 2001 From: Patrick Jentsch Date: Tue, 28 Jan 2020 11:06:11 +0100 Subject: [PATCH] fix command --- merge_images | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/merge_images b/merge_images index 6045fec..9b7ee00 100755 --- a/merge_images +++ b/merge_images @@ -36,7 +36,7 @@ def merge_images(input_dir, output_dir): o=output_dir) subprocess.run(cmd, shell=True) cmd = 'rm {i}/file_list.txt'.format(i=input_dir) - subprocess.run(cmd) + subprocess.run(cmd, shell=True) def main():