Name openslides_personal_settings.py and openslides_global_settings.oy

This commit is contained in:
Norman Jäckel 2012-08-24 14:23:12 +02:00
parent 32cfa6c914
commit 6d1c356ffd
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ from django.core.management import execute_from_command_line
CONFIG_TEMPLATE = """#!/usr/bin/env python
# -*- coding: utf-8 -*-
from openslides.openslides_settings import *
from openslides.openslides_global_settings import *
# Use 'DEBUG = True' to get more details for server errors
# (Default for relaeses: 'False')
@ -98,7 +98,7 @@ def main(argv=None):
# Find the path to the settings
settings = opts.settings or \
os.path.join(os.path.expanduser('~'),'.openslides','settings.py')
os.path.join(os.path.expanduser('~'),'.openslides','openslides_personal_settings.py')
# Create settings if necessary
if not os.path.exists(settings):