Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #6719
| References | <8106c94d-04f5-4b36-a7dc-be3cff7fecff@b42g2000yqi.googlegroups.com> |
|---|---|
| Date | 2011-05-31 01:32 -0700 |
| Subject | Re: BadValueError: Property title is required |
| From | Chris Rebert <clp2@rebertia.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2311.1306830777.9059.python-list@python.org> (permalink) |
On Tue, May 31, 2011 at 1:21 AM, michal.bulla <michal.bulla@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
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
BadValueError: Property title is required "michal.bulla" <michal.bulla@gmail.com> - 2011-05-31 01:21 -0700
Re: BadValueError: Property title is required Chris Rebert <clp2@rebertia.com> - 2011-05-31 01:32 -0700
Re: BadValueError: Property title is required "bruno.desthuilliers@gmail.com" <bruno.desthuilliers@gmail.com> - 2011-05-31 07:28 -0700
Re: BadValueError: Property title is required Casey Dwyer <caseydwyer@gmail.com> - 2011-06-03 09:53 -0700
csiph-web