Thank you for the advice on this problem. I haven't touched Django since I finished this project. It's been about 4 months.
Having had some more time to explore the issue, I believe the problem lies here: from django.contrib.contenttypes import generic In my models.py, I'm using generic foreign keys and generic relationships. My errors seem to center around this. I can do this in python: import django <- Works fine import django.contrib.contenttypes <- Works fine from django.contrib.contenttypes import generic Traceback (most recent call last): File "<stdin>", line 1, in <module> ImportError: No module named generic Has the generic library been moved? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

