Skip to content

Commit

Permalink
fix(nhlgt): Another place NHL added an extraneous dict
Browse files Browse the repository at this point in the history
ver(nhlgt): 2.0.12
ver(platform): 2024.9.4
  • Loading branch information
toddrob99 committed Sep 22, 2024
1 parent 368741d commit ee0a8ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bots/nhl_game_threads/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

import praw

__version__ = "2.0.11"
__version__ = "2.0.12"

DATA_LOCK = threading.Lock()

Expand Down
2 changes: 1 addition & 1 deletion bots/nhl_game_threads/templates/decisions.mako
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
awayTeam = data["myTeam"] if data["homeAway"] == "away" else data["oppTeam"]
homeTeam = data["myTeam"] if data["homeAway"] == "home" else data["oppTeam"]
def playerLink(p):
return f"[{p['name']}](https://www.nhl.com/player/{p['playerId']})"
return f"[{p['name']['default']}](https://www.nhl.com/player/{p['playerId']})"
threeStars = data["game"].get("summary", {}).get("threeStars")
labels = ["First", "Second", "Third"]
%>\
Expand Down
2 changes: 1 addition & 1 deletion redball/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env python

VERSION = "2024.9.3"
VERSION = "2024.9.4"

0 comments on commit ee0a8ac

Please sign in to comment.