mirror of
https://github.com/beetbox/beets.git
synced 2026-02-10 17:34:05 +01:00
Try again to fix unidecode_list for python2 support
Signed-off-by: Graham R. Cobb <g+beets@cobb.uk.net>
This commit is contained in:
parent
cad2c055c5
commit
b0110fa224
1 changed files with 2 additions and 2 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue