remove comma from delete tags

This commit is contained in:
Damien Elmes 2009-04-22 18:10:54 +09:00
parent c8731bc49c
commit 3c9ad98a44

View file

@ -1651,7 +1651,7 @@ where id = :id""", pending)
pass
if tmpTags != oldTags:
pending.append(
{'id': id, 'now': now, 'tags': ", ".join(tmpTags)})
{'id': id, 'now': now, 'tags': " ".join(tmpTags)})
self.s.statements("""
update facts set
tags = :tags,