minor fixes and changelog entry

This commit is contained in:
Adam Jakab 2020-02-25 15:23:52 +01:00
parent 131227eff4
commit d06665413c
2 changed files with 3 additions and 2 deletions

View file

@ -35,9 +35,8 @@ class IncludeLazyConfig(confuse.LazyConfig):
except confuse.NotFoundError:
pass
except confuse.ConfigReadError as err:
stderr.write("Configuration 'import' failed: {}"
stderr.write("configuration `import` failed: {}"
.format(err.reason))
pass
config = IncludeLazyConfig('beets', __name__)

View file

@ -160,6 +160,8 @@ Fixes:
:bug:`3480`
* :doc:`/plugins/parentwork`: Don't save tracks when nothing has changed.
:bug:`3492`
* Added a warning when configuration files defined in the `include` directive
of the configuration file fail to be imported.
For plugin developers: