From 52f09a481a8459d06b12f85eea3ba6f599cd8f16 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Sun, 6 Dec 2015 15:24:03 +0000 Subject: [PATCH] Hide config directory --- project/utils/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/utils/constants.py b/project/utils/constants.py index a5d7195..655f895 100644 --- a/project/utils/constants.py +++ b/project/utils/constants.py @@ -2,10 +2,10 @@ import os # Core Directories BASE_DIR = os.path.dirname(os.path.abspath(__file__)) -DATA_DIR = os.path.expanduser("~/dfa/") +DATA_DIR = os.path.expanduser("~/.dfa/") # Config -USER_CONFIG_DIR = os.path.join(DATA_DIR, ".dfa.yml") +USER_CONFIG_DIR = os.path.join(DATA_DIR, "dfa.yml") DEFAULT_CONFIG_DIR = os.path.join(BASE_DIR, 'defaults.yml') REQUIRED_KEYS = ['public_repo']