Move to Django 1.5, reorg settings.
[fnp-django-template.git] / project_name / settings.py
diff --git a/project_name/settings.py b/project_name/settings.py
deleted file mode 100644 (file)
index e9b77f0..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-import os.path
-import glob
-
-conffiles = glob.glob(os.path.join(
-    os.path.dirname(__file__), 'settings.d', '*.py'))
-conffiles.sort()
-for f in conffiles:
-    execfile(os.path.abspath(f))
-
-try:
-    execfile(os.path.abspath(os.path.join(
-        os.path.dirname(__file__), 'localsettings.py')))
-except IOError:
-    pass