strip trailing spaces from team name and slogan

This commit is contained in:
Sakimori 2021-01-05 17:28:45 -05:00
parent 0a1ce24853
commit 9b7038990f

View File

@ -1069,8 +1069,8 @@ def team_from_collection(newteam_json):
def team_from_message(command): def team_from_message(command):
newteam = games.team() newteam = games.team()
roster = command.split("\n",1)[1].split("\n") roster = command.split("\n",1)[1].split("\n")
newteam.name = roster[0] #first line is team name newteam.name = roster[0].strip() #first line is team name
newteam.slogan = roster[1] #second line is slogan newteam.slogan = roster[1].strip() #second line is slogan
if not roster[2].strip() == "": if not roster[2].strip() == "":
raise CommandError("The third line should be blank. It wasn't, so just in case, we've not done anything on our end.") raise CommandError("The third line should be blank. It wasn't, so just in case, we've not done anything on our end.")
pitchernum = len(roster)-2 pitchernum = len(roster)-2