I've migrated an existing django 1.3 to django 1.5. everything seems ok. However, I have a deprecation warning due to localflavor when i lauch python manage.py runserver
...\env\lib\site-packages\django\contrib\loca lflavor__init__.py:2: DeprecationWarning: django.contrib.localflavor is deprecated. Use the separate django-localflavor-* packages instead.
warnings.warn("django.contrib.localflavor is deprecated. Use the separate djan go-localflavor-* packages instead.", DeprecationWarning)
I've read the django 1.5 release note and I understand that this app is now deprecated. My problem is that I don't use the localflavor app in my project.
I imagine that another app is loading it somehow (maybe localeurl or modeltranslation?) but I don't ho wto fix this warning.
- How to know why this warning is shown?
- How to fix it in a clean way?