On Sun, 2010-09-12 at 08:59 -0700, jean polo wrote:
> sorry but I'm not sure to get what I'm supposed to find with this ?

Something in your project is shadowing the django framework's namespace,
so .e.g

1. You have created your own module or package and did a 

        import django
        
or 
        
        import something as django
        

2. You have created your own reference called "django", e.g.

        django = 5
        
or 
        
        from something import django

Anyway it's hard to say from here but something within your project is
shadowing django.


Perhaps running it in the debugger might help:

e.g.

        $ python -m pdb manage.py shell
        
        (Pdb) r
        
http://docs.python.org/library/pdb.html


-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to