From 141683d309b46eb6ca46a1b2b25e7acb1b595aed Mon Sep 17 00:00:00 2001 From: j <0x006A@0x2620.org> Date: Sat, 3 Mar 2012 13:36:24 +0100 Subject: [PATCH] fix opensearch template --- pandora/app/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora/app/views.py b/pandora/app/views.py index a297c4853..124fd27fb 100644 --- a/pandora/app/views.py +++ b/pandora/app/views.py @@ -74,7 +74,7 @@ def opensearch_xml(request): e = ET.SubElement(osd, 'Url') e.attrib['type'] = 'text/html' e.attrib['method'] = 'GET' - e.attrib['template'] = "%s={searchTerms}" % request.build_absolute_uri('/') + e.attrib['template'] = "%s*={searchTerms}" % request.build_absolute_uri('/') ''' e = ET.SubElement(osd, 'Url') e.attrib['type'] = 'application/x-suggestions+json'