Fix: Minor log showing in CampaignAB

This commit is contained in:
LmeSzinc 2021-10-03 22:57:28 +08:00
parent 4046dd25f5
commit 8ccb9a67b2

View File

@ -26,7 +26,7 @@ class EventStage:
class CampaignAB(CampaignRun):
def run(self):
stages = [EventStage(file) for file in os.listdir(f'./campaign/{self.config.Campaign_Event}')]
logger.attr('Stage', stages)
logger.attr('Stage', [str(stage) for stage in stages])
logger.attr('StageFilter', self.config.EventAb_StageFilter)
STAGE_FILTER.load(self.config.EventAb_StageFilter)
stages = STAGE_FILTER.apply(stages)