Commit 919d81866d037bca2c5580e2fe7b20953a72aebb

Authored by hitier
1 parent a40ff516

Change config file name

app/__init__.py
... ... @@ -4,13 +4,13 @@ import sys
4 4 from flask import Flask
5 5  
6 6 # Please, set a config file on top project dir
7   -# find example in ressources/app_config.py
  7 +# find example in ressources/pdc_config.py
8 8 try:
9   - from app_config import Config, ProdConfig, DevConfig, TestConfig
  9 + from pdc_config import Config, ProdConfig, DevConfig, TestConfig
10 10 except ImportError:
11 11 # TODO: use logging system
12   - print("Please set an app_config.py file in you PYTHON_PATH")
13   - print("(copy from resources/app_config.py)")
  12 + print("Please set an pdc_config.py file in you PYTHON_PATH")
  13 + print("See INSTALL.md for more info")
14 14 sys.exit(-1)
15 15  
16 16  
... ...
resources/app_config.py renamed to resources/pdc_config.py