On Fri, 1 Nov 2013 10:11:05 -0700 Jon Dufresne <
jon.du...@gmail.com>
wrote:
I don't think you want to do that.
If I understand you correctly, you want a warning (or an error) if a
setting is not defined. The correct place to throw that warning is when
you need the setting, not when you define the setting.
Using settings.py for that would be wrong because the setting might be
set afterwards. Most settings.py I encounter or write have a ```try:
import local_settings``` at the bottom...
Have fun,
Arnold