Added whole path checker in main.py for config.toml

pull/1205/head
Simon 2 years ago committed by GitHub
parent a7594b8bd4
commit ba4bd197f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -4,6 +4,7 @@ import sys
from os import name
from subprocess import Popen
from pathlib import Path
from prawcore import ResponseException
from reddit.subreddit import get_subreddit_threads
@ -77,7 +78,8 @@ def shutdown():
if __name__ == "__main__":
assert sys.version_info >= (3, 9), "Python 3.10 or higher is required"
config = settings.check_toml("utils/.config.template.toml", "config.toml")
directory = Path().absolute()
config = settings.check_toml(f"{directory}/utils/.config.template.toml", "config.toml")
config is False and exit()
try:
if len(config["reddit"]["thread"]["post_id"].split("+")) > 1:

Loading…
Cancel
Save