mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
when rebuilding tag priorities, don't include obsolote suspended
This commit is contained in:
parent
8f18299cc5
commit
dd00d1a5e1
1 changed files with 1 additions and 1 deletions
|
@ -1172,7 +1172,7 @@ and type between 0 and 1""", time=time)
|
|||
"Update priority setting on tags table."
|
||||
# make sure all priority tags exist
|
||||
for s in (self.lowPriority, self.medPriority,
|
||||
self.highPriority, self.suspended):
|
||||
self.highPriority):
|
||||
tagIds(self.s, parseTags(s))
|
||||
tags = self.s.all("select tag, id, priority from tags")
|
||||
tags = [(x[0].lower(), x[1], x[2]) for x in tags]
|
||||
|
|
Loading…
Reference in a new issue