Dear All,
I found the error during migrate to v2.0.0 so at the moment I stuck with v1.7.0
The error appear in case of I mix up models with instance variable eg.
Class A(models.Model):
a = models.TextField()
def init(self):
self._a = "Hello World"
when save() _a has been evaluated as field variable.