From 5ad92fc196aefb13024f7f57d89cb25e129ae30c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Wed, 1 Jan 2020 16:06:16 +0100 Subject: [PATCH] [newgrounds] fix tags metadata extraction --- gallery_dl/extractor/newgrounds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gallery_dl/extractor/newgrounds.py b/gallery_dl/extractor/newgrounds.py index 5454e526..54e60b0d 100644 --- a/gallery_dl/extractor/newgrounds.py +++ b/gallery_dl/extractor/newgrounds.py @@ -98,7 +98,7 @@ class NewgroundsExtractor(Extractor): 'id="faves_load">', '<').replace(",", "")) data["score"] = text.parse_float(extr('id="score_number">', '<')) data["tags"] = text.split_html(extr( - '
', '
')) + '
', '
')) data["artist"] = [ text.extract(user, '//', '.')[0] for user in text.extract_iter(page, '
', '>')