From b246ba066ee6a01ebade02cda5193376f779b0f1 Mon Sep 17 00:00:00 2001 From: hitnrun30 Date: Thu, 5 Oct 2017 16:18:52 -0400 Subject: [PATCH] MusicBrainz extended charaters must work with the characters 8243 and 8208 --- headphones/helpers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/headphones/helpers.py b/headphones/helpers.py index 6a117fc16..809e1cb88 100644 --- a/headphones/helpers.py +++ b/headphones/helpers.py @@ -271,6 +271,8 @@ def replace_illegal_chars(string, type="file"): u"…": '...', # HORIZONTAL ELLIPSIS (U+2026) u"’": "'", # APOSTROPHE (U+0027) u"‐": "-", # EN DASH (U+2013) + u'\u8208','-', # HYPHEN (U+8208) + u'\u8243','”', # DOUBLE PRIME (U+8243) }