docs: Add PR#1611 to changelog

This commit is contained in:
Stein Magnus Jodal 2018-03-30 10:44:08 +02:00
parent 87ff8d9269
commit cd2bbaba07
2 changed files with 3 additions and 2 deletions

View File

@ -14,6 +14,8 @@ Feature release.
change, this shouldn't affect any supported systems as even Debian stable
includes Tornado >= 4.4.
- File: Fix extraneous encoding of path. (PR: :issue:`1611`)
- MPD: Added ``idle`` to the list of available commands.
(Fixes: :issue:`1593`, PR: :issue:`1597`)

View File

@ -142,6 +142,5 @@ class FileLibraryProvider(backend.LibraryProvider):
def _is_in_basedir(self, local_path):
return any(
path.is_path_inside_base_dir(
local_path, media_dir['path'])
path.is_path_inside_base_dir(local_path, media_dir['path'])
for media_dir in self._media_dirs)