From 076e7154c3475c942c8c22e089cf8b51a20413ff Mon Sep 17 00:00:00 2001 From: Tuk Bredsdorff Date: Mon, 14 Jan 2019 17:07:03 -0500 Subject: [PATCH] Added missing arguments `show_upcoming, use_12_hour_format` was missing from call to `self.writer.team_scores()`. --- soccer/request_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soccer/request_handler.py b/soccer/request_handler.py index d32896b..2e65220 100644 --- a/soccer/request_handler.py +++ b/soccer/request_handler.py @@ -66,7 +66,7 @@ def get_team_scores(self, team, time, show_upcoming, use_12_hour_format): click.secho("No action during past week. Change the time " "parameter to get more fixtures.", fg="red", bold=True) else: - self.writer.team_scores(team_scores, time) + self.writer.team_scores(team_scores, time, show_upcoming, use_12_hour_format) except APIErrorException as e: click.secho(e.args[0], fg="red", bold=True)