From 79e35f994e05f10fc340f13735e3325009fa2ac3 Mon Sep 17 00:00:00 2001 From: caiwx86 Date: Mon, 16 Jan 2023 02:22:01 +0800 Subject: [PATCH] fix --- utils/CBZUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/CBZUtils.py b/utils/CBZUtils.py index 8298b6b..5887e6a 100644 --- a/utils/CBZUtils.py +++ b/utils/CBZUtils.py @@ -102,7 +102,7 @@ class CBZUtils: for img in zip_imgs: if img.endswith(".jpg"): file_path = os.path.join(unpack_dir,img) - is_file.append(fileUtils.ver_file(file_path,"image")) + is_file.append(str(fileUtils.ver_file(file_path,"image"))) is_file = ",".join(is_file) if len(is_file) != 0 and "False" in is_file: shutil.rmtree(unpack_dir)