On Wed, Oct 29, 2008 at 4:59 PM, Grout58 <[EMAIL PROTECTED]> wrote:
> class Insert(webapp.RequestHandler):
> def post(self):
> serial = Serial()
You've just attempted to create an invalid Serial entity. The
'required=...' validation happens at creation time, not put time. You
should do something like this:
serial = Serial(game=self.request.get('txtGame'),
serial=self.request.get('txtSerial'))
serial.put()
Dave.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---