TEMPLATE_DEBUG warning messages?
I use Wing to work on my Django projects, and I have dutifully set TEMPLATE_DEBUG in my settings file. Does anyone know how to suppress this error message that I get every time any Django process starts?
The standalone TEMPLATE_* settings were deprecated in Django 1.8 and the TEMPLATES dictionary takes precedence. You must put the values of the following settings into your default TEMPLATES dict: TEMPLATE_DEBUG.
Comments