From ea1cc1a43e82f16312193e4ab55dcd54b1af079d Mon Sep 17 00:00:00 2001 From: Nicolas Morey-Chaisemartin Date: Tue, 19 Jun 2018 17:02:23 +0200 Subject: [PATCH] * cbr2cbz.py: Remove temporary folder after conversion Signed-off-by: Nicolas Morey-Chaisemartin --- cbr2cbz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbr2cbz.py b/cbr2cbz.py index e4c73ab..ffb4b7e 100755 --- a/cbr2cbz.py +++ b/cbr2cbz.py @@ -54,7 +54,7 @@ uncompress(sys.argv[1], temp_dir) #Compress images and put them into a CBZ/ZIP compress(temp_dir, cbz_filename) - +execute("".join(["rm -Rf ", temp_dir]))