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

The EpubInParts writer called exit() right after write_epub(), terminating
the process after one book — so every multi-book download (series and list)
only ever wrote the first ebook. Removing it lets the loop (and the async
client cleanup in download_book) continue.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Mattias Svensson 2026-06-28 14:18:13 +02:00
parent 1e6e5f161c
commit 475bfc53f1

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()