Hello,

The problem is that both D:\projekty\ogloszenia 
and D:\projekty\ogloszenia\src\apps are on your python path.

The recommended way to do it is to import all of your code relative to 
manage.py and only have that directory on your python path, so in your 
case, that would be:
src.apps.entries.models.Entry_tags
src.project.settings

Or, in your case it may make sense to put the manage.py in your src folder, 
making it:
apps.entries.models.Entry_tags
project.settings

If you don't want the "apps" prefix on your apps, you may want to consider 
moving them up one level and removing the apps directory.

Collin

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/f3d22361-8eb1-4a53-84d4-605a3b8b30d1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to