Hello,
I have a model with a single attribute that is a StringListProperty.
I get an error if I define it as such:
class Test(db.Expando):
people = db.StringListProperty(required=False, indexed=True)
However, on changing it to:
class Test(db.Expando):
people = db.StringListProperty(required=True, indexed=True,
default=[])
It starts working. Any ideas why this is happening??
Regards,
-Dhruv.
--
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.