Fix long line and add changelog entry

This commit is contained in:
test 2017-11-10 13:46:26 +01:00
parent 54297dbab4
commit 8544b3a830
2 changed files with 4 additions and 1 deletions

View file

@ -783,7 +783,8 @@ class FetchArtPlugin(plugins.BeetsPlugin, RequestMixin):
if task.choice_flag == importer.action.ASIS:
# For as-is imports, don't search Web sources for art.
local = True
elif task.choice_flag in (importer.action.APPLY, importer.action.RETAG):
elif task.choice_flag in (importer.action.APPLY,
importer.action.RETAG):
# Search everywhere for art.
local = False
else:

View file

@ -65,6 +65,8 @@ Fixes:
gstreamer backend. :bug:`2636`
* :doc:`/plugins/scrub`: Handle errors when manipulating files using newer
versions of Mutagen. :bug:`2716`
* :doc:`/plugins/fetchart`: Fix: don't skip running the fetchart plugin during import, when the
"Edit Candidates" option is used. :bug:`2734`
For developers: