From b51e2862d1ef885661454a8055e4e11ac2fa6bc8 Mon Sep 17 00:00:00 2001 From: tom roth Date: Mon, 6 Jul 2015 15:26:06 +0200 Subject: [PATCH] file-browser: let the user decide on minimal scanner timeout --- mopidy/internal/path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/internal/path.py b/mopidy/internal/path.py index 9e642755..7573dfd2 100644 --- a/mopidy/internal/path.py +++ b/mopidy/internal/path.py @@ -199,7 +199,7 @@ def find_mtimes(root, follow=False): def is_local_path_inside_base_dir(local_path, base_path): if local_path.endswith(os.sep): raise ValueError('Local path %s cannot end with a path separator' - % local_path) + % local_path) # Expand symlinks real_base_path = os.path.realpath(base_path) real_local_path = os.path.realpath(local_path)