In django/conf/global_settings.py
DEBUG=False
In my project settings.py
DEBUG=True
but when i access the DEBUG from global_settings.py like
from django.conf import settings
print settings.DEBUG //True
its printing True not False, why ?
and my second question is that
if Django has to provide DEBUG=True for each project setting file(myproj/setting.py) , then why cannot it make DEBUG=True in global_settings.py rather than DEBUG=False ?