From b0110fa224e2af73125edb88a8b6cce0d6da5b12 Mon Sep 17 00:00:00 2001 From: "Graham R. Cobb" Date: Tue, 16 Mar 2021 16:40:43 +0000 Subject: [PATCH] Try again to fix unidecode_list for python2 support Signed-off-by: Graham R. Cobb --- beetsplug/bareasc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/beetsplug/bareasc.py b/beetsplug/bareasc.py index d17cc4ac1..2bdad98fc 100644 --- a/beetsplug/bareasc.py +++ b/beetsplug/bareasc.py @@ -79,8 +79,8 @@ class BareascPlugin(BeetsPlugin): if album: for album in lib.albums(query): bare = unidecode(six.ensure_text(format(album, fmt))) - print_(six.ensure_str(bare)) + print_(six.ensure_text(bare)) else: for item in lib.items(query): bare = unidecode(six.ensure_text(format(item, fmt))) - print_(six.ensure_str(bare)) + print_(six.ensure_text(bare))