debugging

This commit is contained in:
Kevin Rode 2021-01-04 22:23:26 -05:00
parent c5abae79eb
commit d669c90de3

View File

@ -137,9 +137,11 @@ class StartGameCommand(Command):
try:
team_name1 = command.split("\n")[1].strip()
team1 = get_team_fuzzy_search(team_name1)
print(team1)
team_name2 = command.split("\n")[2].strip()
team2 = get_team_fuzzy_search(team_name2)
print(team2)
innings = int(command.split("\n")[3])
except IndexError: