From 3c089117940de5d66504400db8b37603d98b60bf Mon Sep 17 00:00:00 2001 From: x1ppy <59340737+x1ppy@users.noreply.github.com> Date: Mon, 6 Apr 2020 17:01:11 -0400 Subject: [PATCH] Add missing extra_tags parameter to MetadataSourcePlugin (#3540) --- beets/plugins.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beets/plugins.py b/beets/plugins.py index 8606ebc69..695725cb8 100644 --- a/beets/plugins.py +++ b/beets/plugins.py @@ -715,7 +715,7 @@ class MetadataSourcePlugin(object): return id_ return None - def candidates(self, items, artist, album, va_likely): + def candidates(self, items, artist, album, va_likely, extra_tags=None): """Returns a list of AlbumInfo objects for Search API results matching an ``album`` and ``artist`` (if not various).