On 7/21/07, Chris Moffitt <[EMAIL PROTECTED]> wrote: > I'm trying to get django-comment-utils working and I'm having a persistent > problem where I get the following error when running syncdb:
Well, there is an issue tracker where I'll happily help people with any questions they have: http://code.google.com/p/django-comment-utils/issues/list Your problem is that you need to run syncdb once to install django.contrib.contenttypes *before* installing any apps which are using comment_utils; this is because comment_utils uses the id of the ContentType instance for your model as an key to store moderation information, and so needs to be able to look things up in the ContentType table when registering your models. A future version may change that, but for now comment out the apps which use moderation, run syncdb, then un-comment and run again. -- "Bureaucrat Conrad, you are technically correct -- the best kind of correct." --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---