New config style

This commit is contained in:
Martyn Inglis
2016-07-05 15:38:20 +01:00
parent 7bd1ea1a45
commit 9ec52eac02
2 changed files with 8 additions and 6 deletions

View File

@@ -136,9 +136,9 @@ class Live(Config):
configs = {
'development': 'config.Development',
'test': 'config.Test',
'live': 'config.Live',
'staging': 'config.Staging',
'preview': 'config.Preview'
'development': Development,
'test': Test,
'live': Live,
'staging': Staging,
'preview': Preview
}