mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-03 19:28:25 +02:00
get_track_name function created bad track suffix
This commit is contained in:
parent
4ac7ac3fe5
commit
94b15f076d
1 changed files with 2 additions and 2 deletions
|
@ -113,8 +113,8 @@ class Track:
|
|||
return name
|
||||
|
||||
def get_track_name(self):
|
||||
prefix = self.prefix + " " if self.prefix else ""
|
||||
suffix = self.suffix + " " if self.suffix else ""
|
||||
prefix = (self.prefix + " ") if self.prefix else ""
|
||||
suffix = (" (" + self.suffix + ")") if self.suffix else ""
|
||||
|
||||
name = (prefix + self.name + suffix)
|
||||
return name
|
||||
|
|
Loading…
Reference in a new issue