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:
Adrian Sampson 2016-11-16 11:55:00 -05:00
commit 6d3497c560

View file

@ -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):