Commit 919d81866d037bca2c5580e2fe7b20953a72aebb
1 parent
a40ff516
Exists in
master
and in
4 other branches
Change config file name
Showing
2 changed files
with
4 additions
and
4 deletions
Show diff stats
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