From d2dc089c6241fce7f20e199c9b47095bd439a299 Mon Sep 17 00:00:00 2001 From: Alex Xu Date: Tue, 3 Feb 2026 09:59:51 -0800 Subject: [PATCH] add workers crashed restart pc message (#1239) --- kindlecomicconverter/comic2ebook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kindlecomicconverter/comic2ebook.py b/kindlecomicconverter/comic2ebook.py index 988d3ff..7c119fc 100755 --- a/kindlecomicconverter/comic2ebook.py +++ b/kindlecomicconverter/comic2ebook.py @@ -660,7 +660,7 @@ def imgDirectoryProcessing(path, job_progress=''): raise UserWarning("Conversion interrupted.") if len(workerOutput) > 0: rmtree(os.path.join(path, '..', '..'), True) - raise RuntimeError("One of workers crashed. Cause: " + workerOutput[0][0], workerOutput[0][1]) + raise RuntimeError("One of workers crashed. Maybe restart PC. Cause: " + workerOutput[0][0], workerOutput[0][1]) else: rmtree(os.path.join(path, '..', '..'), True) raise UserWarning("C2E: Source directory is empty.")