mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
Remove references to TEMPLATE_DEBUG
This setting is deprecated since Django 1.8.
This commit is contained in:
parent
a155ac54ad
commit
b75c8d7a7a
3 changed files with 0 additions and 3 deletions
|
|
@ -21,7 +21,6 @@ file:
|
|||
|
||||
class Dev(Base):
|
||||
DEBUG = True
|
||||
TEMPLATE_DEBUG = DEBUG
|
||||
|
||||
class Prod(Base):
|
||||
TIME_ZONE = 'America/New_York'
|
||||
|
|
|
|||
|
|
@ -46,7 +46,6 @@ value:
|
|||
|
||||
class Dev(Configuration):
|
||||
DEBUG = values.BooleanValue(True)
|
||||
TEMPLATE_DEBUG = values.BooleanValue(DEBUG)
|
||||
|
||||
See the list of :ref:`built-in value classes<built-ins>` for more information.
|
||||
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ class Base(Configuration):
|
|||
# Django settings for test_project project.
|
||||
|
||||
DEBUG = values.BooleanValue(True, environ=True)
|
||||
TEMPLATE_DEBUG = DEBUG
|
||||
|
||||
ADMINS = (
|
||||
# ('Your Name', 'your_email@example.com'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue