diff --git a/src/nhl_managers.py b/src/nhl_managers.py index 45d20d65..d46972f1 100644 --- a/src/nhl_managers.py +++ b/src/nhl_managers.py @@ -404,7 +404,7 @@ class BaseNHLManager: # For live/final games, show scores and period/time home_score = str(game.get("home_score", "0")) away_score = str(game.get("away_score", "0")) - score_text = f"{away_score} - {home_score}" + score_text = f"{away_score}-{home_score}" # Calculate position for the score text (centered at the bottom) score_width = draw.textlength(score_text, font=self.fonts['score'])