From 3b1a16dcce127dfad80604e2aee6db7f6bca3c42 Mon Sep 17 00:00:00 2001 From: rawdlite Date: Wed, 8 Jul 2015 08:24:49 +0200 Subject: [PATCH] file-browser: Changed Message for logging scanner fail --- mopidy/files/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/files/library.py b/mopidy/files/library.py index e2a9ad81..b030b5be 100644 --- a/mopidy/files/library.py +++ b/mopidy/files/library.py @@ -126,7 +126,7 @@ class FilesLibraryProvider(backend.LibraryProvider): result.uri, str(result.playable)) return result.playable except exceptions.ScannerError as e: - logger.debug('Problem scanning %s: %s', uri, e) + logger.debug('Could not scan %s: %s', uri, e) return False def _is_in_basedir(self, local_path):