epub: remove stray exit() that aborted after the first book

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 <noreply@anthropic.com>
This commit is contained in:
Mattias Svensson 2026-06-28 11:17:14 +02:00
parent bf2de7c07d
commit cacce0a493

View File

@ -135,4 +135,3 @@ class Epub(OutputFormat):
output.add_item(epub.EpubNcx())
output.add_item(epub.EpubNav())
epub.write_epub(location, output)
exit()