From 39b48d665b96d78b04bd2671878908e842969284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sat, 29 Feb 2020 00:18:54 +0100 Subject: [PATCH] [hiperdex] use proper name for 'chapter_minor' --- gallery_dl/extractor/hiperdex.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gallery_dl/extractor/hiperdex.py b/gallery_dl/extractor/hiperdex.py index 3114d561..e0b0f507 100644 --- a/gallery_dl/extractor/hiperdex.py +++ b/gallery_dl/extractor/hiperdex.py @@ -53,7 +53,7 @@ class HiperdexBase(): chapter, _, minor = chapter.partition("-") data = { "chapter" : text.parse_int(chapter), - "chapter-minor": "." + minor if minor and minor != "end" else "", + "chapter_minor": "." + minor if minor and minor != "end" else "", } data.update(self.manga_data(self.manga.lower())) return data @@ -69,7 +69,7 @@ class HiperdexChapterExtractor(HiperdexBase, ChapterExtractor): "artist" : "Sasuga Kei", "author" : "Sasuga Kei", "chapter": 154, - "chapter-minor": ".5", + "chapter_minor": ".5", "description": "re:Natsuo Fujii is in love with his teacher, Hina", "genre" : list, "manga" : "Domestic na Kanojo", @@ -104,7 +104,7 @@ class HiperdexMangaExtractor(HiperdexBase, MangaExtractor): "artist" : "Bolp", "author" : "Abyo4", "chapter": int, - "chapter-minor": "", + "chapter_minor": "", "description": "re:I didn’t think much of the creepy girl in ", "genre" : list, "manga" : "You're Not That Special!",