changed string to object

pull/9/head
Chris Veilleux 2018-10-22 13:04:52 -05:00
parent 8c77155cd4
commit a53f34506b
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ class ProdConfig(BaseConfig):
def get_config_location():
"""Determine which config to load based on environment"""
environment_configs = dict(
dev='market_api.config.DevelopmentConfig',
dev=DevelopmentConfig,
test=TestConfig,
prod=ProdConfig
)