From 6402d16e6299e50e01510d240df90999df5075bc Mon Sep 17 00:00:00 2001 From: Kenneth Myers Date: Fri, 26 Apr 2024 04:43:46 -0400 Subject: [PATCH] fix config issues --- model/test_discordUtils.py | 2 +- model/test_model.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/model/test_discordUtils.py b/model/test_discordUtils.py index 0514d9c..a4a7fd9 100644 --- a/model/test_discordUtils.py +++ b/model/test_discordUtils.py @@ -17,7 +17,7 @@ def cfg(): cfg_file = cu.find_config() except FileNotFoundError as e: print(e) - cfg_file = os.path.join(PATH_OF_THIS_FILE, "../../example_reddit.cfg") + cfg_file = os.path.join(PATH_OF_THIS_FILE, "../example_reddit.cfg") cfg = cu.parse_config(cfg_file) return cfg diff --git a/model/test_model.py b/model/test_model.py index 7bd43a1..c9d8699 100644 --- a/model/test_model.py +++ b/model/test_model.py @@ -103,7 +103,7 @@ def cfg(): cfg_file = cu.find_config() except FileNotFoundError as e: print(e) - cfg_file = os.path.join(PATH_OF_THIS_FILE, "../../example_reddit.cfg") + cfg_file = os.path.join(PATH_OF_THIS_FILE, "../example_reddit.cfg") cfg = cu.parse_config(cfg_file) return cfg