mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
Fix logging formatting string in duplicates plugin
{)} → {0}
This commit is contained in:
parent
8cac47af2a
commit
6bdb02c721
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ def _checksum(item, prog):
|
|||
checksum = command_output(args)
|
||||
setattr(item, key, checksum)
|
||||
item.store()
|
||||
log.debug(u'{)}: computed checksum for {1} using {2}',
|
||||
log.debug(u'{0}: computed checksum for {1} using {2}',
|
||||
PLUGIN, item.title, key)
|
||||
except subprocess.CalledProcessError as e:
|
||||
log.debug(u'{0}: failed to checksum {1}: {2}',
|
||||
|
|
|
|||
Loading…
Reference in a new issue