call _parse_change in _new_change

This commit is contained in:
Laura Klünder 2017-06-13 16:25:01 +02:00
parent c07a2f1ab5
commit 18174c373a

View file

@ -129,7 +129,7 @@ class ChangeSet(models.Model):
for name, value in kwargs.items():
setattr(change, name, value)
change.save()
# print(repr(change))
self._parse_change(change)
return change
def add_create(self, obj, author=None):