diff --git a/gallery_dl/extractor/newgrounds.py b/gallery_dl/extractor/newgrounds.py index b6533048..f586401b 100644 --- a/gallery_dl/extractor/newgrounds.py +++ b/gallery_dl/extractor/newgrounds.py @@ -198,7 +198,10 @@ class NewgroundsExtractor(Extractor): data["favorites"] = text.parse_int(extr( 'id="faves_load">', '<').replace(",", "")) data["score"] = text.parse_float(extr('id="score_number">', '<')) - data["tags"] = text.split_html(extr('
', '
')) + data["tags"] = [ + t for t in text.split_html(extr('
', '
')) + if "(function(" not in t + ] data["artist"] = [ text.extr(user, '//', '.') for user in text.extract_iter(page, '
', '>')