fix: change sample config path to root not app module

This commit is contained in:
Aerex 2018-12-22 01:07:12 -06:00
parent c7d7448e15
commit 94ffe82636
1 changed files with 1 additions and 1 deletions

2
cli.py
View File

@ -13,7 +13,7 @@ APP_NAME = 'twservices'
SAMPLE_CONFIG_FILE = 'sample.config.yml'
CONFIG_FILE = 'config.yml'
CONFIG_DIR = click.get_app_dir(APP_NAME)
PROJ_DIR = path.join(path.dirname(path.realpath(__file__)), APP_NAME)
PROJ_DIR = path.join(path.dirname(path.realpath(__file__)))
def __create_config_file():