Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2008-10-08 10:17:30 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2008-10-08 10:17:30 (GMT)
commitdec4d2b8ad3715bfa78e5d719f95d2e1c0e1104d (patch)
treec5330d49ee4d925cdacfea9676d37509096d859b
parent6414ee65348f3da257f5b1eae1edfff4c62defbc (diff)
Indexed properties should be strings
-rw-r--r--src/olpc/datastore/indexstore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/olpc/datastore/indexstore.py b/src/olpc/datastore/indexstore.py
index 0ce91ee..84f4bc4 100644
--- a/src/olpc/datastore/indexstore.py
+++ b/src/olpc/datastore/indexstore.py
@@ -97,7 +97,7 @@ class IndexStore(object):
if key not in _PROPERTIES_NOT_TO_INDEX:
if text:
text += ' '
- text += value
+ text += str(value)
return text
def find(self, query):