Skip to content

Commit

Permalink
change from f string to format (#8)
Browse files Browse the repository at this point in the history
Missed 1 in the last commit
  • Loading branch information
frutoper authored and HarryShomer committed Dec 18, 2018
1 parent 0bd77f7 commit 2f81359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hockey_scraper/game_scraper.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_players_json(players_json):
try:
players[name]['id'] = players_json[key]['id']
except KeyError:
shared.print_warning(f'{name} is missing an ID number in the pbp json')
shared.print_warning('{name} is missing an ID number in the pbp json'.format(name=name))
players[name]['id'] = 'NA'

return players
Expand Down

0 comments on commit 2f81359

Please sign in to comment.