changelog (& tiny tweak) for #567

This commit is contained in:
Adrian Sampson 2014-03-06 11:03:41 -08:00
parent f71307f87e
commit b8af77bdea
2 changed files with 5 additions and 1 deletions

View file

@ -794,7 +794,9 @@ class Configuration(RootView):
appdir = os.environ[self._env_var]
appdir = os.path.abspath(os.path.expanduser(appdir))
if os.path.isfile(appdir):
raise ConfigError('%s must be a directory' % self._env_var)
raise ConfigError('{0} must be a directory'.format(
self._env_var
))
else:
# Search platform-specific locations. If no config file is

View file

@ -27,6 +27,8 @@ Fixes:
with quotation marks in their names. Thanks again to Pedro Silva.
* Fix a crash when importing with both of the :ref:`group_albums` and
:ref:`incremental` options enabled. Thanks to geigerzaehler.
* Give a sensible error message when ``BEETSDIR`` points to a file. Thanks
again to geigerzaehler.
1.3.3 (February 26, 2014)