I'm having trouble getting the latest django svn, and svn unmodified versions of both coltrane (http://code.google.com/p/coltrane-blog/) and basic blog (http://code.google.com/p/django-basic-blog/) to import correctly with django-tagging (http://code.google.com/p/django- tagging/). Both have dependencies on django-tagging and are hanging up on the following error from that code:
The ONLY thing I did change was in basic blog models.py: @permalink get_absolute_url = permalink(get_absolute_url) to make it python 2.3 compatible and maxlength= to max_length= for incompatibility with latest SVN My settings installed apps: INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.flatpages', 'django.contrib.comments', 'django.contrib.markup', 'myproject.template_utils', 'myproject.comment_utils', 'myproject.tagging', 'myproject.blog', # 'myproject.coltrane', ) The error when loading www.site.com/admin: File "/home/username/django_projects/myproject/tagging/models.py" in ? 8. from tagging.managers import TagManager, TaggedItemManager Exception Type: ImportError at /admin/ Exception Value: No module named tagging.managers All the syntax looks correct to me, but I am also fairly new to django, so any help is appreciated. This is a pretty bare bones installation so far. If I comment out blog or coltrane, admin loads just fine, no errors. syncdb works fine as well, even with tagging and blog uncommented. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---