Skip to content

Commit

Permalink
Fix typo in variable name and version push
Browse files Browse the repository at this point in the history
  • Loading branch information
panzarino committed Apr 7, 2016
1 parent c80a1fb commit a6fc64f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mlbgame/game.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def scoreboard(year, month, day, home=None, away=None):
w_pitcher_name = w_pitcher_data.find('pitcher').attrib['name']
w_pitcher = {'name':w_pitcher_name, 'wins':int(w_pitcher_data.attrib['wins']), 'losses':int(w_pitcher_data.attrib['losses'])}
except:
W_pitcher = {'name':'', 'wins':0, 'losses':0}
w_pitcher = {'name':'', 'wins':0, 'losses':0}
try:
l_pitcher_data = game.find('l_pitcher')
l_pitcher_name = l_pitcher_data.find('pitcher').attrib['name']
Expand Down
2 changes: 1 addition & 1 deletion mlbgame/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python

# package version
__version__="2.0.1"
__version__="2.0.2"

0 comments on commit a6fc64f

Please sign in to comment.