mirror of
https://github.com/ankitects/anki.git
synced 2025-09-20 15:02:21 -04:00
Fix closing quote to match opening quote.
This commit is contained in:
parent
2f34361b89
commit
2e52ce2df1
1 changed files with 1 additions and 1 deletions
|
@ -1275,7 +1275,7 @@ and due >= ? and queue = 0""" % scids, now, self.col.usn(), shiftby, low)
|
||||||
"select id, nid from cards where type = 0 and id in "+scids):
|
"select id, nid from cards where type = 0 and id in "+scids):
|
||||||
d.append(dict(now=now, due=due[nid], usn=self.col.usn(), cid=id))
|
d.append(dict(now=now, due=due[nid], usn=self.col.usn(), cid=id))
|
||||||
self.col.db.executemany(
|
self.col.db.executemany(
|
||||||
"update cards set due=:due,mod=:now,usn=:usn where id = :cid""", d)
|
"update cards set due=:due,mod=:now,usn=:usn where id = :cid", d)
|
||||||
|
|
||||||
def randomizeCards(self, did):
|
def randomizeCards(self, did):
|
||||||
cids = self.col.db.list("select id from cards where did = ?", did)
|
cids = self.col.db.list("select id from cards where did = ?", did)
|
||||||
|
|
Loading…
Reference in a new issue