changed unicode arrow symbol to ascii code

This commit is contained in:
nathannathant 2021-02-25 21:03:42 -08:00
parent 678910d2f3
commit c9e6eb13a6
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ def _format_genres(genres: list) -> str:
if genres == []:
return ''
else:
return ', '.join(genres[-1].split(""))
return ', '.join(genres[-1].split('\u2192'))
# Use KeyError catching instead of dict.get to avoid empty tags