From 6028d6766d92ee13bbf6edae135655995863581a Mon Sep 17 00:00:00 2001 From: Lasse Bigum Date: Sun, 20 Oct 2013 23:35:31 +0200 Subject: [PATCH] Fix tabs->spaces and extra ')' --- mopidy/backends/local/library.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mopidy/backends/local/library.py b/mopidy/backends/local/library.py index bec5b0d0..1cb8534e 100644 --- a/mopidy/backends/local/library.py +++ b/mopidy/backends/local/library.py @@ -76,7 +76,7 @@ class LocalLibraryProvider(base.BaseLibraryProvider): artist_filter(t) or albumartist_filter(t) or track_no_filter(t) or - date_filter(t)) or + date_filter(t) or uri_filter(t)) if field == 'uri': @@ -135,7 +135,7 @@ class LocalLibraryProvider(base.BaseLibraryProvider): artist_filter(t) or albumartist_filter(t) or track_no_filter(t) or - date_filter(t)) or + date_filter(t) or uri_filter(t)) if field == 'uri':