X-Git-Url: https://git.mdrn.pl/fnpdjango.git/blobdiff_plain/94e4264e4ac4f8f34d2975f26a0337e6f2c35027..87776dc1caec95a6eaaf011a7356e676722a11a3:/project_name/settings.py diff --git a/project_name/settings.py b/project_name/settings.py deleted file mode 100644 index e9b77f0..0000000 --- a/project_name/settings.py +++ /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