On 12/7/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> ContentType matching query does not exist.
> [...]
> I'm not exactly sure what it means, but it's DEFINITELY more helpful.
> Perhaps I should look at my content-type table?

Run this code:

"""
from django.contrib.contenttypes.management import create_contenttypes
from django.db.models import get_apps
for app in get_apps():
    create_contenttypes(app, created_models=None, verbosity=2)
"""

Adrian

-- 
Adrian Holovaty
holovaty.com | djangoproject.com

--~--~---------~--~----~------------~-------~--~----~
 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