From 0f2eb2d056d5b4362ef909eb290acd14386bc1a6 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 4 Sep 2012 06:52:34 +0900 Subject: [PATCH] don't warn about missing history if log > card reps such a state will happen if same card reviewed in two locations, and is not an error --- aqt/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aqt/browser.py b/aqt/browser.py index f766aa9fd..2e36fd090 100644 --- a/aqt/browser.py +++ b/aqt/browser.py @@ -847,7 +847,7 @@ border: 1px solid #000; padding: 3px; '>%s""" % rep "%d%%" % (factor/10) if factor else "", cs.time(taken)) + "" s += "" - if cnt != self.card.reps: + if cnt < self.card.reps: s += _("""\ Note: Some of the history is missing. For more information, \ please see the browser documentation.""")