From 684f4deadc85908f6e376606d74914bf980c8e44 Mon Sep 17 00:00:00 2001 From: Pedro Silva Date: Sun, 17 May 2015 15:01:48 +0200 Subject: [PATCH] fix typo during tagging: option -t now actually works --- beetsplug/duplicates.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/duplicates.py b/beetsplug/duplicates.py index 5f42bf487..d17df5f68 100644 --- a/beetsplug/duplicates.py +++ b/beetsplug/duplicates.py @@ -173,7 +173,7 @@ class DuplicatesPlugin(BeetsPlugin): k, v = tag.split('=') except: raise UserError('%s: can\'t parse k=v tag: %s' % (PLUGIN, tag)) - setattr(k, v) + setattr(item, k, v) item.store() print_(format(item, fmt))