Re: Error while loading data from fixture

2016-01-06 Thread Parijatha Kumar Pasupuleti
I've posted this question in stackoverflow at http://stackoverflow.com/questions/34636107/error-while-loading-data-from-fixture. The solution was posted by one Alasdair. For reference, his answer is pasted below ... " The natural_key <https://docs.djangoproject.com/

Error while loading data from fixture

2016-01-06 Thread Parijatha Kumar Pasupuleti
Hai ! I have the following model and manager. *class StateManager(models.Manager):def get_by_natural_key(self, name):return self.get(name=name)class State(models.Model):class Meta:verbose_name = "State"verbos