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
This commit is contained in:
Damien Elmes 2012-09-04 06:52:34 +09:00
parent e2300abb82
commit 0f2eb2d056

View file

@ -847,7 +847,7 @@ border: 1px solid #000; padding: 3px; '>%s</div>""" % rep
"%d%%" % (factor/10) if factor else "",
cs.time(taken)) + "</tr>"
s += "</table>"
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.""")