Skip to content

Commit

Permalink
Merge pull request #140 from tiktuk/patch-1
Browse files Browse the repository at this point in the history
Added missing arguments
  • Loading branch information
dfrt82 authored Jan 15, 2019
2 parents d4c820e + 076e715 commit 000942d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soccer/request_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 000942d

Please sign in to comment.