fixed intendation error and a function that have been renamed.

This commit is contained in:
raphael60650 2021-07-18 11:44:34 +02:00
parent a01b390ce0
commit 2f42ed599c
2 changed files with 11 additions and 11 deletions

View file

@ -5,5 +5,5 @@ def get_ctfile_cup(self, race=False):
"""
ctfile_cup = f'\nC "{self.name}"\n'
for track in self.tracks:
ctfile_cup += track.get_ctfile_track(race)
ctfile_cup += track.get_ctfile(race)
return ctfile_cup