From 6acdebae3cd4184252218ebb6a71df8f6f9ff33e Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 14 Oct 2025 13:03:02 -0700 Subject: [PATCH] fix webtoon cannot identify image file (#1112) --- kindlecomicconverter/comic2panel.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kindlecomicconverter/comic2panel.py b/kindlecomicconverter/comic2panel.py index 6d47493..4012195 100644 --- a/kindlecomicconverter/comic2panel.py +++ b/kindlecomicconverter/comic2panel.py @@ -273,6 +273,7 @@ def main(argv=None, qtgui=None): splitWorkerPool.apply_async(func=splitImage, args=(i, ), callback=splitImageTick) splitWorkerPool.close() splitWorkerPool.join() + dot_clean(targetDir) if GUI and not GUI.conversionAlive: rmtree(targetDir, True) raise UserWarning("Conversion interrupted.")