From ab67727283919b9b43f37abb7a2a7de9d51fe37e Mon Sep 17 00:00:00 2001 From: Johnny Robeson Date: Fri, 10 Jun 2016 00:09:15 -0400 Subject: [PATCH] wrap the cover_names map with a list in fetchart most `cover_names` users expect to operate on a list --- beetsplug/fetchart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beetsplug/fetchart.py b/beetsplug/fetchart.py index f131bd9d5..3514956f7 100644 --- a/beetsplug/fetchart.py +++ b/beetsplug/fetchart.py @@ -704,7 +704,7 @@ class FetchArtPlugin(plugins.BeetsPlugin, RequestMixin): self.enforce_ratio = True cover_names = self.config['cover_names'].as_str_seq() - self.cover_names = map(util.bytestring_path, cover_names) + self.cover_names = list(map(util.bytestring_path, cover_names)) self.cautious = self.config['cautious'].get(bool) self.store_source = self.config['store_source'].get(bool)