On 13 May 2011, at 5:37 PM, Mohammed Alli wrote: > Fri May 13 14:30:44 2011 - routing 0 routes 0 > /usr/lib/pymodules/python2.6/django/core/context_processors.py:27: > DeprecationWarning: The context processor at > `django.core.context_processors.auth` is deprecated; use the path > `django.contrib.auth.context_processors.auth` instead. > DeprecationWarning
You shouldn't really worry about this, its just a depreciation warning indicating an API change, to provide backwards compatibility the old way still works but will be removed in the future. If you do not want the noise in your logs you can change 'django.core.context_processors.auth' to 'django.contrib.auth.context_processors.auth' in your settings.py file - Andrew -- Baruwa - www.baruwa.org _______________________________________________ Baruwa mailing list [email protected] http://lists.baruwa.org/mailman/listinfo/baruwa

