mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00
apply same list->tuple fix to v1 sched
This commit is contained in:
parent
4f99d0d3e5
commit
427bf268fc
1 changed files with 2 additions and 0 deletions
|
@ -291,6 +291,8 @@ limit %d"""
|
|||
% (self._deckLimit(), self.reportLimit),
|
||||
self.dayCutoff,
|
||||
)
|
||||
for i in range(len(self._lrnQueue)):
|
||||
self._lrnQueue[i] = (self._lrnQueue[i][0], self._lrnQueue[i][1])
|
||||
# as it arrives sorted by did first, we need to sort it
|
||||
self._lrnQueue.sort()
|
||||
return self._lrnQueue
|
||||
|
|
Loading…
Reference in a new issue