diff --git a/anki/collection.py b/anki/collection.py index 89bf7b56d..4f366a9ae 100644 --- a/anki/collection.py +++ b/anki/collection.py @@ -648,10 +648,7 @@ select id from notes where id not in (select distinct nid from cards)""") # and finally, optimize self.optimize() newSize = os.stat(self.path)[stat.ST_SIZE] - save = (oldSize - newSize)/1024 txt = _("Database rebuilt and optimized.") - if save > 0: - txt += "\n" + _("Saved %dKB.") % save ok = not problems problems.append(txt) self.save()