[Answer]-Django 1.4: DeprecationWarning with django.template.loader.render_to_string

1👍

You can get a traceback for this warning by a Python warning control command line option -W to see easy what uses the deprecated django.views.generic.simple.

python -W error:::django.views.generic.simple manage.py test

Your test case does not report any DeprecationWarning for a simple template.html with Django 1.4. You probably use an obsoleted template tag that imports this deprecated module.

More info for
Python warning control
and DeprecationWarning are in my answer.

Leave a comment