add 'trainer_names' key to each trainer header in trainer_group_names

This commit is contained in:
Bryan Bishop 2012-05-20 00:20:31 -05:00
parent 6f49b01c4b
commit 4c45171213

View File

@ -3901,7 +3901,7 @@ def make_trainer_group_name_trainer_ids(debug=True):
if debug:
print "starting to make trainer names and give ids to repeated trainer names"
i = 1
i = 1
for header in trainer_group_table.headers:
trainer_names = [] # (name, trainer_header)
dupes = set()
@ -3923,6 +3923,8 @@ def make_trainer_group_name_trainer_ids(debug=True):
# now add the trainer names to trainer_group_names
trainer_group_names[i]["trainer_names"] = [theader.make_constant_name() for theader in header.individual_trainer_headers]
i += 1
if debug:
print "done improving trainer names"