diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index 39b5a52d4..24368c86f 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -977,6 +977,12 @@ class Spotify(RemoteArtSource): return # Try each source in turn. +# Note that SOURCES_ALL is redundant (and presently unused). However, we keep +# it around nn order not break plugins that "register" (a.k.a. monkey-patch) +# their own fetchart sources. +SOURCES_ALL = ['filesystem', 'coverart', 'itunes', 'amazon', 'albumart', + 'wikipedia', 'google', 'fanarttv', 'lastfm', 'spotify'] + ART_SOURCES = { 'filesystem': FileSystem, 'coverart': CoverArtArchive,