mirror of
https://github.com/beetbox/beets.git
synced 2025-12-11 11:07:31 +01:00
Merge pull request #2268 from ggVGc/print_flexible_decode_fix
Removed call to .decode('utf-8') when printing flexible attributes
This commit is contained in:
commit
6d3497c560
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue