From dd74e73c044a24dda04434a3b4dea79522cce47e Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 20 May 2012 17:13:39 +0900 Subject: [PATCH] include day lrn cards in forecast --- anki/stats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/stats.py b/anki/stats.py index 6462ced7e..48578f553 100644 --- a/anki/stats.py +++ b/anki/stats.py @@ -185,7 +185,7 @@ select (due-:today)/:chunk as day, sum(case when ivl < 21 then 1 else 0 end), -- yng sum(case when ivl >= 21 then 1 else 0 end) -- mtr from cards -where did in %s and queue = 2 +where did in %s and queue in (2,3) %s group by day order by day""" % (self._limit(), lim), today=self.col.sched.today,