mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
keyfinder: Unicode literals in logging call
Log messages should *always* be Unicode. I wish we had a flake8 checker for this...
This commit is contained in:
parent
0c5fbdcefd
commit
48189b4a54
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ class KeyFinderPlugin(BeetsPlugin):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
item['initial_key'] = key
|
item['initial_key'] = key
|
||||||
log.debug('added computed initial key {0} for {1}'
|
log.debug(u'added computed initial key {0} for {1}'
|
||||||
.format(key, util.displayable_path(item.path)))
|
.format(key, util.displayable_path(item.path)))
|
||||||
item.try_write()
|
item.try_write()
|
||||||
item.store()
|
item.store()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue