copyright fix

This commit is contained in:
Georg Perhofer 2022-12-12 10:10:00 +01:00
parent 4e746ffa7b
commit d47d394b79

View File

@ -45,8 +45,9 @@ def _get_title(track_dict):
def _format_copyright(s: str) -> str: def _format_copyright(s: str) -> str:
s = s.replace("(P)", PHON_COPYRIGHT) if s:
s = s.replace("(C)", COPYRIGHT) s = s.replace("(P)", PHON_COPYRIGHT)
s = s.replace("(C)", COPYRIGHT)
return s return s