Move local settings to "conf" module

This commit is contained in:
2011-03-11 12:44:25 +00:00
parent 4bb9a43203
commit 58b1691638
4 changed files with 3 additions and 3 deletions

0
conf/__init__.py Normal file
View File

View File

@@ -15,10 +15,10 @@ ADMINS = (
MANAGERS = ADMINS MANAGERS = ADMINS
# Import db settings from dbsettings.py # Import db settings from dbsettings.py
from dbsettings import * from conf.dbsettings import *
# Import the Broker settings # Import the Broker settings
from brokersettings import * from conf.brokersettings import *
# Local time zone for this installation. Choices can be found here: # Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
@@ -167,7 +167,7 @@ EVE_PROXY_KEEP_LOGS = 30
# try and import local settings # try and import local settings
try: try:
from settingslocal import * from conf.settingslocal import *
except: except:
pass pass