mirror of
https://github.com/beetbox/beets.git
synced 2025-12-28 19:42:42 +01:00
fixed return type coersion for list command
--HG-- extra : convert_revision : svn%3A41726ec3-264d-0410-9c23-a9f1637257cc/trunk%40189
This commit is contained in:
parent
52f791c551
commit
084b531ba6
1 changed files with 1 additions and 1 deletions
|
|
@ -941,7 +941,7 @@ class Server(BaseServer):
|
|||
c.execute(statement, subvals)
|
||||
|
||||
for row in c:
|
||||
conn.send(show_tag + ': ' + row[0])
|
||||
conn.send(show_tag + ': ' + unicode(row[0]))
|
||||
|
||||
def cmd_count(self, conn, tag, value):
|
||||
"""Returns the number and total time of songs matching the
|
||||
|
|
|
|||
Loading…
Reference in a new issue