From f7d698201297f12f5a68ef7f7374a86cc943eedf Mon Sep 17 00:00:00 2001 From: Justin Date: Fri, 4 Mar 2022 17:42:24 +0800 Subject: [PATCH] fixed PL not showing up in past games --- stockTicker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stockTicker.py b/stockTicker.py index 9af60d0..263f2bc 100755 --- a/stockTicker.py +++ b/stockTicker.py @@ -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('-', '.')