From a7594b8bd47566061af02c3673a905c941a24693 Mon Sep 17 00:00:00 2001 From: Simon <65854503+StopmotionSimonYT@users.noreply.github.com> Date: Wed, 24 Aug 2022 13:09:13 +0200 Subject: [PATCH] Added full path check of .config.template.toml --- utils/settings.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/utils/settings.py b/utils/settings.py index 9f1f78b..d2974d5 100755 --- a/utils/settings.py +++ b/utils/settings.py @@ -1,7 +1,7 @@ #!/usr/bin/env python import re from typing import Tuple, Dict - +from pathlib import Path import toml from rich.console import Console @@ -159,4 +159,5 @@ If you see any prompts, that means that you have unset/incorrectly set variables if __name__ == "__main__": - check_toml("utils/.config.template.toml", "config.toml") + directory = Path().absolute() + check_toml(f"{directory}/utils/.config.template.toml", "config.toml")