BadValueError: Property title is required

Chris Rebert clp2 at rebertia.com
Tue May 31 04:32:54 EDT 2011


On Tue, May 31, 2011 at 1:21 AM, michal.bulla <michal.bulla at gmail.com> wrote:
> Hello,
>
> I'm trying to create simple method to create category. I set the model
> category:
>
> class Category(db.Model):
>  title = db.StringProperty(required=True)
>  clashes_count = db.IntegerProperty(default=0)
<snip some obviously Django-using code>
> The problem is that I'm getting an error BadValueError: Property title
> is required. Can you help me with that ? Thanks

Try asking on the Django mailing list:
http://groups.google.com/group/django-users

Cheers,
Chris



More information about the Python-list mailing list