diff --git a/gallery_dl/extractor/toyhouse.py b/gallery_dl/extractor/toyhouse.py index 44d87ee8..cee0d9dc 100644 --- a/gallery_dl/extractor/toyhouse.py +++ b/gallery_dl/extractor/toyhouse.py @@ -52,16 +52,18 @@ class ToyhouseExtractor(Extractor): return { "url": extr(needle, '"'), "date": text.parse_datetime(extr( - 'Credits\n\n
', '<'), + '\n
', '<'), "%d %b %Y, %I:%M:%S %p"), "artists": [ text.remove_html(artist) for artist in extr( - '
', '
\n
').split( - '
') + '
', + '
\n
').split( + '
') ], "characters": text.split_html(extr( - '
'))[2:], } def _pagination(self, path):