Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/gdatastore/index.py
diff options
context:
space:
mode:
Diffstat (limited to 'gdatastore/index.py')
-rw-r--r--gdatastore/index.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gdatastore/index.py b/gdatastore/index.py
index 849824f..6651856 100644
--- a/gdatastore/index.py
+++ b/gdatastore/index.py
@@ -206,8 +206,8 @@ class QueryParser(xapian.QueryParser):
info = _STANDARD_VALUES[name]
query = self._parse_query_value(info, value)
else:
- logging.warning('Unknown term: %r=%r', name, value)
- continue
+ prefix = _prefix_for_unknown(name)
+ query = self._parse_query_term(prefix, value)
queries.append(query)