I came across this thread and was having the exact same problem.
*Exactly* the same... I had tried everything you tried to no avail.

I actually fixed it by taking a hint from something that came out of
following along with your debug session in my own code.

I'll put my solution in terms of your code.

This fails:

from django import template
from django.contrib.contenttypes.models import ContentType
from bookmarks.models import Bookmark

This works:

from django import template
from django.contrib.contenttypes.models import ContentType
import bookmarks
from bookmarks.models import Bookmark

I'm not quite sure why though. I wonder, did your solution end up
looking anything like the above?

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