Hi,
When I try to import python-twitter module in my app, django tries to import django.templatetags.twitter instead of python-twitter module (in /usr/lib/python2.5/site-packages/twitter.py), but I don't know why. :s
For example:
myproject/
myapp/
templatetags/
file.py
In file.py
:
import twitter # this imports django.templatetags.twitter
Any idea to fix it ?
Thank you very much :)
Edit: I've found the problem. My templatetags file was named "twitter.py". I've renamed it to "twitter_tags.py" and now this works. :)