mirror of
https://github.com/ankitects/anki.git
synced 2025-11-09 14:17:13 -05:00
remove comma from delete tags
This commit is contained in:
parent
c8731bc49c
commit
3c9ad98a44
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue