From 0369b98ff2e0d9b6dbe4eeac3fc96e4358ff7524 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Tue, 16 Jul 2019 12:03:46 +0200 Subject: [PATCH] replace acoustid's ";" artist separator with "&" --- delojza.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/delojza.py b/delojza.py index 61237b6..620c9e7 100755 --- a/delojza.py +++ b/delojza.py @@ -175,7 +175,7 @@ class DelojzaBot: score, rid, aid_title, aid_artist = results[0] if score > .4: title = aid_title - artist = aid_artist + artist = re.sub(r' *; +', ' & ', aid_artist) best_acoustid_score = score source = "AcoustID ({}%)".format(round(score * 100)) except acoustid.NoBackendError: