mirror of
https://github.com/beetbox/beets.git
synced 2026-01-30 20:13:37 +01:00
Simpler row lookup (#1818)
This commit is contained in:
parent
6707eda4e4
commit
5ff14742b8
1 changed files with 1 additions and 1 deletions
|
|
@ -84,7 +84,7 @@ def _print_sqlite(query):
|
|||
entries and print the values of it, with identation of 2 spaces.
|
||||
"""
|
||||
for row in query:
|
||||
print_(' ' * 2 + dict(zip(row.keys(), row))['key'])
|
||||
print_(' ' * 2 + row[b'key'])
|
||||
|
||||
|
||||
# fields: Shows a list of available fields for queries and format strings.
|
||||
|
|
|
|||
Loading…
Reference in a new issue