Change how mopidy-scan prints tag-cache

This commit is contained in:
Thomas Adamcik 2010-11-01 23:05:15 +01:00
parent 913bac3b0d
commit 11bedc46dd

View File

@ -26,6 +26,6 @@ if __name__ == '__main__':
for a in tracks_to_tag_cache_format(tracks):
if len(a) == 1:
print a[0]
print (u'%s' % a).encode('utf-8')
else:
print u': '.join([unicode(b) for b in a]).encode('utf-8')
print (u'%s: %s' % a).encode('utf-8')