From 667cd1783026a827956ad8e0feaf92746b34d5bf Mon Sep 17 00:00:00 2001 From: Tobias Gruetzmacher Date: Mon, 1 Feb 2021 22:02:54 +0100 Subject: [PATCH] Update SnafuComics --- dosagelib/plugins/old.py | 3 +++ dosagelib/plugins/snafu.py | 13 ++++++------- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/dosagelib/plugins/old.py b/dosagelib/plugins/old.py index 3d970127a..41f0d7156 100644 --- a/dosagelib/plugins/old.py +++ b/dosagelib/plugins/old.py @@ -1263,6 +1263,9 @@ class Removed(Scraper): cls('SmackJeeves/ZaenWell'), cls('SmackJeeves/ZeldaTheNewAdventureofLinkIIMajorasMask'), cls('SmackJeeves/_A_'), + cls('SnafuComics/KOF'), + cls('SnafuComics/SF'), + cls('SnafuComics/Titan'), cls('StuffNoOneToldMe'), cls('VictimsOfTheSystem'), cls('WebDesignerCOTW'), diff --git a/dosagelib/plugins/snafu.py b/dosagelib/plugins/snafu.py index 7d6ee50d2..934d4156c 100644 --- a/dosagelib/plugins/snafu.py +++ b/dosagelib/plugins/snafu.py @@ -1,7 +1,7 @@ # SPDX-License-Identifier: MIT # Copyright (C) 2004-2008 Tristan Seligmann and Jonathan Jacobs # Copyright (C) 2012-2014 Bastian Kleineidam -# Copyright (C) 2015-2016 Tobias Gruetzmacher +# Copyright (C) 2015-2021 Tobias Gruetzmacher from ..scraper import _ParserScraper from ..helpers import indirectStarter @@ -23,21 +23,21 @@ class Snafu(_ParserScraper): @classmethod def getmodules(cls): - return [ + return ( cls('Braindead', 'braindead'), cls('Bunnywith', 'bunnywith'), cls('DeliverUsEvil', 'deliverusevil'), cls('EA', 'ea'), cls('FT', 'ft'), + cls('GG', 'gg'), cls('GrimTalesFromDownBelow', 'grimtales'), - cls('KOF', 'kof'), + cls('HalfboundBlade', 'hbp'), + cls('KayosGaiden', 'titan-kayos'), cls('MyPanda', 'mypanda'), cls('NarutoHeroesPath', 'naruto'), cls('NewSuperMarioAdventures', 'nsma'), cls('PowerPuffGirls', 'powerpuffgirls'), - # cls('PSG2', 'psg2'), -- Strangely broken cls('SatansExcrement', 'satansexcrement'), - cls('SF', 'sf'), cls('SkullBoy', 'skullboy'), cls('Snafu', 'snafu'), cls('Soul', 'soul'), @@ -45,8 +45,7 @@ class Snafu(_ParserScraper): cls('SureToBeBanD', 'stbb'), cls('TheLeague', 'league'), cls('Tin', 'tin'), - cls('Titan', 'titan'), cls('TrunksAndSoto', 'trunks-and-soto'), cls('TW', 'tw'), cls('Zim', 'zim'), - ] + )