Re: Strange Error Related to DjangoUnicodeDecodeError

2009-07-16 Thread Karen Tracey
On Thu, Jul 16, 2009 at 4:59 AM, jfergon wrote: > > Hi, > > I'm working on Django-postgreSQL, and I can't solve a problem. This is > my models.py: > > from django.db import models > from datetime import datetime > > class Event(models.Model): >title = models.TextField(max_length=50,null=False

Strange Error Related to DjangoUnicodeDecodeError

2009-07-16 Thread jfergon
Hi, I'm working on Django-postgreSQL, and I can't solve a problem. This is my models.py: from django.db import models from datetime import datetime class Event(models.Model): title = models.TextField(max_length=50,null=False) celebration = models.DateField(default=datetime.now(),null=Fa