From 394081ae273d0628748c113fea1745b6dfe93d2e Mon Sep 17 00:00:00 2001 From: Stein Magnus Jodal Date: Wed, 25 Mar 2015 00:40:59 +0100 Subject: [PATCH] core: Add quotes around 'exact' in warning --- mopidy/core/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy/core/library.py b/mopidy/core/library.py index 16e33d33..89a2037a 100644 --- a/mopidy/core/library.py +++ b/mopidy/core/library.py @@ -254,7 +254,7 @@ class LibraryController(object): except TypeError: backend_name = backend.actor_ref.actor_class.__name__ logger.warning( - '%s does not implement library.search() with exact ' + '%s does not implement library.search() with "exact" ' 'support. Please upgrade it.', backend_name) return [r for r in results if r]