From c3b70b5098e7b1594d1e5e03c7053581d1e08277 Mon Sep 17 00:00:00 2001 From: walt Date: Wed, 16 Nov 2016 11:33:16 +0100 Subject: [PATCH] Removed call to .decode('utf-8') when printing flexible attributes --- beets/ui/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/ui/commands.py b/beets/ui/commands.py index c02f6accf..cec502636 100755 --- a/beets/ui/commands.py +++ b/beets/ui/commands.py @@ -87,7 +87,7 @@ def _print_keys(query): returned row, with identation of 2 spaces. """ for row in query: - print_(u' ' * 2 + row['key'].decode('utf-8')) + print_(u' ' * 2 + row['key']) def fields_func(lib, opts, args):