From 94ffe826368908e2878e3eb28809d94c8758bb74 Mon Sep 17 00:00:00 2001 From: Aerex Date: Sat, 22 Dec 2018 01:07:12 -0600 Subject: [PATCH] fix: change sample config path to root not app module --- cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.py b/cli.py index 45a3d4a..3b850bc 100644 --- a/cli.py +++ b/cli.py @@ -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():