Hi,
I am using django on google app engine, and also using the app-engine-
patch package.
I am getting this error when trying to save a form:
Exception Value: 'NoneType' object has no attribute 'properties'
Exception Location: \Development\google_appengine\google\appengine\ext
\db\djangoforms.py in save, line 795
The problem is in the creation of an iterator for model properties:
self._meta.model.properties().iteritems()
That's because self._meta.model is 'None'. On the other hand
self.Meta.model seems to be created properly (and the Meta class is
contained in the form and does specify the model class).
Any idea what happened that makes the _meta.model not to exist?
Thanks!
Yaniv
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" 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/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---