I'm using pydev to use Django in Eclipse. I'm following the tutorial here (http://docs.djangoproject.com/en/dev/intro/tutorial01/), making a simple poll application. In the example when they run the shell they are able to do this:
from polls.models import Poll, Choice however, for some reason, I'm not able to do this. In order for it to work, I have to do this:
from projectname.polls.models import Poll, Choice Any idea why that is? Is it an eclipse thing? Is some path wrong somewhere in my settings.py? Thanks!