From a1b2b6c8a2a58aeedee63dc0f1171f224932f1aa Mon Sep 17 00:00:00 2001 From: Adrian Sampson Date: Wed, 28 Dec 2011 15:56:07 -0800 Subject: [PATCH] fix plugin hook in embedart --- beetsplug/embedart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/embedart.py b/beetsplug/embedart.py index d90e5afb6..1c7866ac7 100755 --- a/beetsplug/embedart.py +++ b/beetsplug/embedart.py @@ -137,6 +137,6 @@ def clear(lib, query): # Automatically embed art into imported albums. @EmbedCoverArtPlugin.listen('album_imported') -def album_imported(lib, album): +def album_imported(lib, album, config): if album.artpath and options['autoembed']: _embed(album.artpath, album.items())