From 6bdb02c7218c0b41ee13e17edd9c41a1557d6ad9 Mon Sep 17 00:00:00 2001 From: Bruno Cauet Date: Sun, 4 Jan 2015 12:25:24 +0100 Subject: [PATCH] Fix logging formatting string in duplicates plugin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit {)} → {0} --- beetsplug/duplicates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/duplicates.py b/beetsplug/duplicates.py index 5229ee5ca..4b15bf939 100644 --- a/beetsplug/duplicates.py +++ b/beetsplug/duplicates.py @@ -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}',