Fix data range in Phase4

This commit is contained in:
eth3lbert 2024-04-14 03:19:56 +08:00
parent 4ac75ba90d
commit 8b26bcfaab
No known key found for this signature in database

View File

@ -130,7 +130,7 @@ class Phase4:
logger.error("Download failed: %s", self.base_url)
return False
date = now.shift(days=-7).date().strftime("%Y-%m-%d")
self.data[date] = r.content.splitlines()[2:-2]
self.data[date] = r.content.splitlines()[2:-1]
async def run(self):
for _ in range(5):