Fix config.py

This commit is contained in:
Jérôme Schneider 2011-09-19 11:27:46 +02:00
parent ba3bd92c6b
commit 3641c4c935
1 changed files with 6 additions and 2 deletions

View File

@ -39,7 +39,7 @@ db_url = 'sqlite:///test.db'
# },
#]
from dispatchers.default import Dispatcher
from dispatcher import Dispatcher
hosts = {
'localhost:8088': [
@ -57,5 +57,9 @@ session_opts = {
'session.expire': 3600,
}
from mandaye.local_config import *
# Import local settings
try:
from mandaye.local_config import *
except ImportError:
pass