Fix book 3 FR
continuous-integration/drone/push Build was killed Details

This commit is contained in:
Michel Roux 2021-05-18 14:41:43 +02:00
parent d7f4604437
commit c5a236f3a8
1 changed files with 5 additions and 2 deletions

View File

@ -57,5 +57,8 @@ for page in range(12):
chapter = create_chapter_from_string(str(text), title)
volumes[volume].add_chapter(chapter)
volumes[1].create_epub('output')
volumes[2].create_epub('output')
for ebook in volumes:
if ebook is None:
continue
ebook.create_epub('output')