Re: django utf-8 Error; field.get_default? I don't think the string I feed to Location should be signed to field.get_default

2010-01-21 Thread Karen Tracey
2010/1/21 iasybvm > I have created an object Location: > class Location(models.Model): >city = models.CharField(max_length=50) >state = models.CharField(max_length=50) >... > I think you've left out a key bit here. The traceback you include shows the problem

django utf-8 Error; field.get_default? I don't think the string I feed to Location should be signed to field.get_default

2010-01-21 Thread iasybvm
I have created an object Location: class Location(models.Model): city = models.CharField(max_length=50) state = models.CharField(max_length=50) ... But I can't initialize it with either unicode data or utf-8 data. I created a record by hand in my postgresql database. I can now read it