No longer escape tank team name

This commit is contained in:
Neale Pickett 2010-05-18 09:03:36 -06:00
parent dd25de1ce0
commit df8bac171c
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ elif not code:
else:
path = os.path.join(basedir, 'players', quote(team, safe=''))
file = open(path, 'w')
file.write('Team: %s\n' % quote(team))
file.write('Team: %s\n' % team)
file.write('Color: #%s\n' % teams.color(team))
file.write('Content-Type: text/x-tanks-bullet\n')
file.write('\n')