diff --git a/dosagelib/plugins/old.py b/dosagelib/plugins/old.py index 26eb63e2c..9db78d66f 100644 --- a/dosagelib/plugins/old.py +++ b/dosagelib/plugins/old.py @@ -255,8 +255,10 @@ class Removed(Scraper): cls('OrnerBoy'), cls('PensAndTales/Evilish'), cls('PensAndTales/FireflyCross'), - cls('PetiteSymphony/Djandora'), - cls('PetiteSymphony/Generation17'), + cls('PetiteSymphony/Kickinrad'), + cls('PetiteSymphony/Orangegrind'), + cls('PetiteSymphony/Rascals'), + cls('PetiteSymphony/Seed'), cls('PunksAndNerds', 'mis'), cls('PunksAndNerdsOld'), cls('RedsPlanet'), @@ -387,6 +389,8 @@ class Renamed(Scraper): cls('KeenSpot/Newshounds', 'KeenSpot/InfinityRefugees'), cls('KeenSpot/SinFest', 'SinFest'), cls('KeenSpot/TheGodChild', 'GodChild'), + cls('PetiteSymphony/Djandora', 'ComicsBreak/Djandora'), + cls('PetiteSymphony/Generation17', 'ComicsBreak/Generation17'), cls('Wulffmorgenthaler', 'WuMo'), cls('ZebraGirl', 'ComicFury/ZebraGirl'), ) diff --git a/dosagelib/plugins/petitesymphony.py b/dosagelib/plugins/petitesymphony.py index 1ae6b6de2..c19c65785 100644 --- a/dosagelib/plugins/petitesymphony.py +++ b/dosagelib/plugins/petitesymphony.py @@ -26,14 +26,10 @@ class PetiteSymphony(_BasicScraper): @classmethod def getmodules(cls): - return [ + return ( cls("knuckleup"), - cls("kickinrad"), - cls("orangegrind"), - cls("rascals"), cls("sangria"), - cls("seed"), - ] + ) class ComicsBreak(_WordPressScraper): @@ -44,7 +40,7 @@ class ComicsBreak(_WordPressScraper): @classmethod def getmodules(cls): - return [ + return ( cls("Djandora"), cls("Generation17"), - ] + )