mirror of https://github.com/dirtbags/moth.git
No longer escape tank team name
This commit is contained in:
parent
dd25de1ce0
commit
df8bac171c
|
@ -31,7 +31,7 @@ elif not code:
|
||||||
else:
|
else:
|
||||||
path = os.path.join(basedir, 'players', quote(team, safe=''))
|
path = os.path.join(basedir, 'players', quote(team, safe=''))
|
||||||
file = open(path, 'w')
|
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('Color: #%s\n' % teams.color(team))
|
||||||
file.write('Content-Type: text/x-tanks-bullet\n')
|
file.write('Content-Type: text/x-tanks-bullet\n')
|
||||||
file.write('\n')
|
file.write('\n')
|
||||||
|
|
Loading…
Reference in New Issue