mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04: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
|
||||
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,
|
||||
|
|
Loading…
Reference in a new issue