From d793e16463b653282be6f452a2aa2a64dec09643 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Sun, 16 Oct 2016 13:40:14 +0200 Subject: [PATCH] [nhentai] fix subcategory value --- gallery_dl/extractor/nhentai.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/nhentai.py b/gallery_dl/extractor/nhentai.py index 7bd8a15f..b41a50eb 100644 --- a/gallery_dl/extractor/nhentai.py +++ b/gallery_dl/extractor/nhentai.py @@ -15,7 +15,7 @@ import json class NhentaiGalleryExtractor(Extractor): """Extractor for image-galleries from nhentai.net""" category = "nhentai" - subcategory = "nijie" + subcategory = "gallery" directory_fmt = ["{category}", "{gallery-id} {title}"] filename_fmt = "{category}_{gallery-id}_{num:>03}.{extension}" pattern = [r"(?:https?://)?(?:www\.)?nhentai\.net/g/(\d+)"]