mirror of
https://github.com/beetbox/beets.git
synced 2025-12-15 21:14:19 +01:00
parent
abf2511002
commit
4d40b058d3
2 changed files with 3 additions and 3 deletions
|
|
@ -59,8 +59,8 @@ log.propagate = False # Don't propagate to root handler.
|
|||
|
||||
|
||||
PF_KEY_QUERIES = {
|
||||
'comp': 'comp:true',
|
||||
'singleton': 'singleton:true',
|
||||
'comp': u'comp:true',
|
||||
'singleton': u'singleton:true',
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -75,7 +75,7 @@ class MBSyncPlugin(BeetsPlugin):
|
|||
"""Retrieve and apply info from the autotagger for items matched by
|
||||
query.
|
||||
"""
|
||||
for item in lib.items(query + ['singleton:true']):
|
||||
for item in lib.items(query + [u'singleton:true']):
|
||||
item_formatted = format(item)
|
||||
if not item.mb_trackid:
|
||||
self._log.info(u'Skipping singleton with no mb_trackid: {0}',
|
||||
|
|
|
|||
Loading…
Reference in a new issue