This is how Paginator is imported https://docs.djangoproject.com/en/dev/topics/pagination/
from django.core.paginator import Paginator (this is part of django.core on my 1.3, so doesn't need installing) This is how djangodblog is trying to import it: from django.contrib.admin.views.main import ChangeList, Paginator ...... see the difference? -- 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.

