From b1887b43d6543021dd8e6266e6acdbcfb030feda Mon Sep 17 00:00:00 2001
From: Jonathan Matthew <jonathan@d14n.org>
Date: Tue, 13 Mar 2012 08:42:42 +1000
Subject: [PATCH] artsearch: fix typo in local search (bug #671950)
spotted by Patrice Duroux <duroux.patrice@orange.fr>
---
plugins/artsearch/local.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/plugins/artsearch/local.py b/plugins/artsearch/local.py
index a914b1d..819fbaa 100644
--- a/plugins/artsearch/local.py
+++ b/plugins/artsearch/local.py
@@ -73,7 +73,7 @@ class LocalSearch:
nkey.add_field("artist", artist)
uri = parent.resolve_relative_path(f_name).get_uri()
print "found album+artist match " + uri
- self.store.store_uri(nkey. RB.ExtDBSourceType.USER, uri)
+ self.store.store_uri(nkey, RB.ExtDBSourceType.USER, uri)
# if that didn't work, look for the longest shared prefix
# only accept matches longer than 2 to avoid weird false positives
--
1.7.9.1