mirror of
https://github.com/beetbox/beets.git
synced 2026-02-19 13:56:22 +01:00
changelog (& tiny tweak) for #567
This commit is contained in:
parent
f71307f87e
commit
b8af77bdea
2 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue