Skip to content

Commit

Permalink
score bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
MaheshBharadwaj committed Sep 13, 2020
1 parent 0065d75 commit 4677b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def putMatches(obj, code, limit, mode):
homeTeamScore = match['score']['fullTime']['homeTeam']
homeTeamScore = 0 if homeTeamScore is None else homeTeamScore
awayTeamScore = match['score']['fullTime']['awayTeam']
awayTeamScore = 0 if awayTeamScore is None else homeTeamScore
awayTeamScore = 0 if awayTeamScore is None else awayTeamScore


status = ''
Expand Down

0 comments on commit 4677b0b

Please sign in to comment.