Sam Chuparkoff escribió:
> The reason python found the standard module instead of your 'profile'
> module is that you appended your paths to the end of sys.path. If you
> had added them to the beginning of the list, python would have found
> your 'profile' module instead of the standard one. Example:
> 
>     workspace = '/home/gabriel/pywks'
>     project = '/home/gabriel/pywks/vertaal'
>     sys.path = [workspace, project] + sys.path
> 
> Hope that makes sense.
> 

I see. Thats the reason it was working with mod_python, because I setted
the path that way.
I didn't know about the profile module. Anyway, now it works fine :)

Thank you!

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