##// END OF EJS Templates
#548 Fixed issue with non-ascii paths in whoosh indexer
marcink -
r2763:81624c8a beta
parent child Browse files
Show More
@@ -201,9 +201,9 b' class WhooshIndexingDaemon(object):'
201 201 author=cs.author,
202 202 message=cs.message,
203 203 last=cs.last,
204 added=u' '.join([node.path for node in cs.added]).lower(),
205 removed=u' '.join([node.path for node in cs.removed]).lower(),
206 changed=u' '.join([node.path for node in cs.changed]).lower(),
204 added=u' '.join([safe_unicode(node.path) for node in cs.added]).lower(),
205 removed=u' '.join([safe_unicode(node.path) for node in cs.removed]).lower(),
206 changed=u' '.join([safe_unicode(node.path) for node in cs.changed]).lower(),
207 207 parents=u' '.join([cs.raw_id for cs in cs.parents]),
208 208 )
209 209 indexed += 1
General Comments 0
You need to be logged in to leave comments. Login now