We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8921bdf commit 036b6c1Copy full SHA for 036b6c1
manga.py
@@ -252,7 +252,7 @@ def single(single):
252
for chapter in CHAPTERS:
253
chapter_dir = chapter_directory(manga, chapter)
254
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)
+ chapter_paths = list(map(lambda name_path: name_path[1], chapter_number_paths))
256
if args.single:
257
chapters_paths.extend(chapter_paths)
258
else:
0 commit comments