1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-02-02 01:44:40 +00:00

settings.py: add import of local_settings.py

This commit is contained in:
Hidden Z 2010-10-06 19:02:08 +00:00
parent 6e9dd89fc0
commit 65a6e6824f

View File

@ -96,3 +96,9 @@ INSTALLED_APPS = (
# Uncomment the next line to enable the admin:
# 'django.contrib.admin',
)
# include local settings
try:
from local_settings import *
except ImportError:
pass