From ab4e2e1a14bf27ab08e0702d2f386a043a4b9d4f Mon Sep 17 00:00:00 2001 From: Ilya Kreymer Date: Tue, 20 Oct 2020 15:55:25 +0000 Subject: [PATCH] cleanup: fix typo in print msg --- zimit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zimit.py b/zimit.py index 55793e2..30cec80 100755 --- a/zimit.py +++ b/zimit.py @@ -102,7 +102,7 @@ def zimit(args=None): def cleanup(): print("") print("----------") - print("Cleanup, removing temp dir: " + temp_root_dir) + print("Cleanup, removing temp dir: " + str(temp_root_dir)) shutil.rmtree(temp_root_dir) atexit.register(cleanup)