Restore an example of a dependent setting to the docs

This was removed by #303. This now uses a real Django setting,
"DEBUG_PROPAGATE_EXCEPTIONS", instead of a deprecated one.
This commit is contained in:
Brian Helba 2021-10-26 22:02:57 -04:00 committed by Paolo Melchiorre
parent 80f2cee84b
commit 596ab9a1bf

View file

@ -46,6 +46,7 @@ value:
class Dev(Configuration):
DEBUG = values.BooleanValue(True)
DEBUG_PROPAGATE_EXCEPTIONS = values.BooleanValue(DEBUG)
See the list of :ref:`built-in value classes<built-ins>` for more information.