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 pass
if tmpTags != oldTags: if tmpTags != oldTags:
pending.append( pending.append(
{'id': id, 'now': now, 'tags': ", ".join(tmpTags)}) {'id': id, 'now': now, 'tags': " ".join(tmpTags)})
self.s.statements(""" self.s.statements("""
update facts set update facts set
tags = :tags, tags = :tags,