From 65a88e2bf40a57010e89918ff8e9e96d44b423f4 Mon Sep 17 00:00:00 2001 From: Bruno Cauet Date: Tue, 24 Feb 2015 19:24:16 +0100 Subject: [PATCH] Fix StrubPlugin.write_item() expected arguments Fix #1338. --- beetsplug/scrub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/scrub.py b/beetsplug/scrub.py index f6a3bed27..ac0017474 100644 --- a/beetsplug/scrub.py +++ b/beetsplug/scrub.py @@ -139,7 +139,7 @@ class ScrubPlugin(BeetsPlugin): self._log.error(u'could not scrub {0}: {1}', util.displayable_path(path), exc) - def write_item(self, path): + def write_item(self, item, path, tags): """Automatically embed art into imported albums.""" if not scrubbing and self.config['auto']: self._log.debug(u'auto-scrubbing {0}', util.displayable_path(path))