Hi, I was trying to follow the example on Dynamic Models over here but
it didn't work for me. [http://code.djangoproject.com/wiki/
DynamicModels]

I copied the code for def create_model in the file models.py, and when
I try to create a model in the shell, I have the following errors.

>>> model = create_model('Empty')
Traceback (most recent call last):
  File "<console>", line 1, in <module>
  File "/Users/../models.py", line 36, in create_model
    return type(UserForm, (models.Model,), attrs)
  File "/.../site-packages/django/db/models/base.py", line 52, in
__new__
    model_module = sys.modules[new_class.__module__]

Apparently the error is in line 36, where I try to return the type but
I have no success. Can someone please help me figure out what's wrong?

Thanks in advance,
Vincent
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to