mirror of
https://github.com/Faraphel/Atlas-Install.git
synced 2025-07-04 03:38:26 +02:00
author list name was not handled correctly
This commit is contained in:
parent
61b54936b3
commit
d4089e4120
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue