From cacce0a49342f0e7e6a247f0ade2048807d0e5fe Mon Sep 17 00:00:00 2001 From: Mattias Svensson Date: Sun, 28 Jun 2026 11:17:14 +0200 Subject: [PATCH] epub: remove stray exit() that aborted after the first book MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The EpubInParts writer called exit() right after write_epub(), terminating the whole process after a single book. This broke every multi-book download (series, and the new want-to-read list) — only the first ebook was ever written. Remove it so the download loop continues. Co-Authored-By: Claude Fable 5 --- grawlix/output/epub.py | 1 - 1 file changed, 1 deletion(-) diff --git a/grawlix/output/epub.py b/grawlix/output/epub.py index a73a23e..333ebc4 100644 --- a/grawlix/output/epub.py +++ b/grawlix/output/epub.py @@ -135,4 +135,3 @@ class Epub(OutputFormat): output.add_item(epub.EpubNcx()) output.add_item(epub.EpubNav()) epub.write_epub(location, output) - exit()