diff --git a/source/Track.py b/source/Track.py index fc2a2a3..95ba7e4 100644 --- a/source/Track.py +++ b/source/Track.py @@ -122,7 +122,7 @@ class Track: """ :return: the list of authors with ", " separating them """ - return ", ".join(self.author) if type(self.author) == str else self.author + return self.author if type(self.author) == str else ", ".join(self.author) def get_ctfile(self, race=False, *args, **kwargs) -> str: """