diff --git a/anki/facts.py b/anki/facts.py index bcdd3e815..2020b9cc2 100644 --- a/anki/facts.py +++ b/anki/facts.py @@ -70,6 +70,10 @@ class Fact(object): if model: for fm in model.fieldModels: self.fields.append(Field(fm)) + self.new = True + + def isNew(self): + return getattr(self, 'new', False) def keys(self): return [field.name for field in self.fields]