Merge pull request #30 from openzim/fix-typo

cleanup: fix typo in print msg
This commit is contained in:
rgaudin 2020-10-20 16:32:29 +00:00 committed by GitHub
commit c6f27f3bf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)