Path: csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!feeder.news-service.com!xlned.com!feeder5.xlned.com!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.123 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.76; '*S*': 0.00; 'category:': 0.09; 'am,': 0.14; 'wrote:': 0.14; 'subject:required': 0.16; 'cc:addr:python- list': 0.17; 'tue,': 0.17; 'cheers,': 0.19; 'header:In-Reply- To:1': 0.21; 'cc:2**0': 0.22; 'cc:no real name:2**0': 0.23; 'trying': 0.23; "i'm": 0.27; 'message-id:@mail.gmail.com': 0.28; 'thanks': 0.28; 'problem': 0.28; 'class': 0.29; 'cc:addr:python.org': 0.30; 'django': 0.31; 'asking': 0.33; 'error': 0.33; 'chris': 0.34; 'list:': 0.36; 'received:google.com': 0.37; 'received:209.85': 0.37; 'model': 0.37; 'hello,': 0.38; 'mailing': 0.38; 'required.': 0.38; 'subject:: ': 0.38; 'url:google': 0.38; 'received:209': 0.39; 'getting': 0.40; 'help': 0.40; 'url:groups': 0.62; 'property': 0.64; '31,': 0.65; 'skip:\xc2 10': 0.72; 'sender:addr:chris': 0.84; 'subject:Property': 0.84; 'received:209.85.218.46': 0.91; 'received:mail-yi0-f46.google.com': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rebertia.com; s=google; h=domainkey-signature:mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=tipFWJJPfwB4Sz69qAGYD3LBDLh7cvTFhyLkpYHfxtQ=; b=It6NqMpV+YV76XzrasIrP6PDhbJHzbrE0qmzV4f1DKohbEoMKPSQo4Rk8RQ1N7HSJy 39MpFFZJe+yJnbFAwlmHPxGJN3AdR26O5l+/ZnNtsqgexyIV077CheW3f5m3fuaIkDKF 8tYdcxlydYl/gPYmni/ngpRo4RLo/2TSlmhks= DomainKey-Signature: a=rsa-sha1; c=nofws; d=rebertia.com; s=google; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=GWuMOEeq3x1qy5SD3Rp65J936wpy6WXTokZA7c/F03kUMfi320v9JQzyjXu+NNRPzB y57eiuo5bxXc4UYIE8Qsktb9z1aUAujbToAPjbfU2AYIUSP5BHqr5xpGTs4C2X4ZL4tc Ss9pnkjnXyJJ8bEPXTMoHylkxVpNoH+3CY3hI= MIME-Version: 1.0 Sender: chris@rebertia.com In-Reply-To: <8106c94d-04f5-4b36-a7dc-be3cff7fecff@b42g2000yqi.googlegroups.com> References: <8106c94d-04f5-4b36-a7dc-be3cff7fecff@b42g2000yqi.googlegroups.com> Date: Tue, 31 May 2011 01:32:54 -0700 X-Google-Sender-Auth: MtBKwvIvaY89glMtHJDPA4sgGA8 Subject: Re: BadValueError: Property title is required From: Chris Rebert To: "michal.bulla" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 19 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1306830777 news.xs4all.nl 49179 [::ffff:82.94.164.166]:58024 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:6719 On Tue, May 31, 2011 at 1:21 AM, michal.bulla wrot= e: > Hello, > > I'm trying to create simple method to create category. I set the model > category: > > class Category(db.Model): > =C2=A0title =3D db.StringProperty(required=3DTrue) > =C2=A0clashes_count =3D db.IntegerProperty(default=3D0) > 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