From d4089e4120f146ab3d9337e20093b2b3c3f83573 Mon Sep 17 00:00:00 2001 From: Faraphel Date: Thu, 13 Jan 2022 14:14:13 +0100 Subject: [PATCH] author list name was not handled correctly --- source/Track.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: """