fixed PL not showing up in past games

This commit is contained in:
Justin
2022-03-04 17:42:24 +08:00
committed by GitHub
parent 981fa51318
commit f7d6982012

View File

@@ -1595,8 +1595,8 @@ class StockTicker():
away_team = match['away_team']
if time != 'future':
home_score = match['home_score']
away_score = match['away_score']
home_score = str(match['home_score'])
away_score = str(match['away_score'])
date = match['date'].replace('-', '.')