Show More
@@ -201,9 +201,9 b' class WhooshIndexingDaemon(object):' | |||||
201 | author=cs.author, |
|
201 | author=cs.author, | |
202 | message=cs.message, |
|
202 | message=cs.message, | |
203 | last=cs.last, |
|
203 | last=cs.last, | |
204 | added=u' '.join([node.path for node in cs.added]).lower(), |
|
204 | added=u' '.join([safe_unicode(node.path) for node in cs.added]).lower(), | |
205 | removed=u' '.join([node.path for node in cs.removed]).lower(), |
|
205 | removed=u' '.join([safe_unicode(node.path) for node in cs.removed]).lower(), | |
206 | changed=u' '.join([node.path for node in cs.changed]).lower(), |
|
206 | changed=u' '.join([safe_unicode(node.path) for node in cs.changed]).lower(), | |
207 | parents=u' '.join([cs.raw_id for cs in cs.parents]), |
|
207 | parents=u' '.join([cs.raw_id for cs in cs.parents]), | |
208 | ) |
|
208 | ) | |
209 | indexed += 1 |
|
209 | indexed += 1 |
General Comments 0
You need to be logged in to leave comments.
Login now