Skip to content

Commit 036b6c1

Browse files
committed
PDF conversion fix
1 parent 8921bdf commit 036b6c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

manga.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def single(single):
252252
for chapter in CHAPTERS:
253253
chapter_dir = chapter_directory(manga, chapter)
254254
chapter_number_paths = sorted(list(files(chapter_dir, 'png')), key=lambda name_path: int(name_path[0]))
255-
chapter_paths = map(lambda name_path: name_path[1], chapter_number_paths)
255+
chapter_paths = list(map(lambda name_path: name_path[1], chapter_number_paths))
256256
if args.single:
257257
chapters_paths.extend(chapter_paths)
258258
else:

0 commit comments

Comments
 (0)