From c9e6eb13a6ddbbc7417715a1410c9b2b241cf8cc Mon Sep 17 00:00:00 2001 From: nathannathant <74019033+pynathanthomas@users.noreply.github.com> Date: Thu, 25 Feb 2021 21:03:42 -0800 Subject: [PATCH] changed unicode arrow symbol to ascii code --- qobuz_dl/metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qobuz_dl/metadata.py b/qobuz_dl/metadata.py index 4fec874..fe2fbf1 100644 --- a/qobuz_dl/metadata.py +++ b/qobuz_dl/metadata.py @@ -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