From 3af3dec22b28f0e54dd748bf0811b9b492d51081 Mon Sep 17 00:00:00 2001 From: Jozef Dochan Date: Sat, 17 Feb 2018 12:38:01 +0100 Subject: [PATCH] corrected type --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 8b34dbc..d2fb19b 100644 --- a/app.py +++ b/app.py @@ -34,7 +34,7 @@ def get_ip(): def load_conf(): directory = os.path.split(os.path.realpath(__file__))[0] - with open(os.path.join(directory, "config2.yml"), "r") as stream: + with open(os.path.join(directory, "config.yml"), "r") as stream: try: return yaml.safe_load(stream) except yaml.YAMLError as e: