let the server.py using the custom config_pathc

This commit is contained in:
Dreampuf 2013-06-29 14:09:54 +08:00
parent 204d4e0424
commit a54146364c

View file

@ -150,7 +150,7 @@ def main():
config_path = value
if config_path:
with open('config.json', 'rb') as f:
with open(config_path, 'rb') as f:
config = json.load(f)
logging.info('loading config from %s' % config_path)
SERVER = config['server']