From f353f9b2028dc29b0290173fb192d1c4c54c1461 Mon Sep 17 00:00:00 2001 From: khuxkm fbexl Date: Mon, 19 Nov 2018 10:34:26 -0500 Subject: [PATCH] Make errors visible when config fails to load --- update.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/update.py b/update.py index 20a0823..17a8570 100644 --- a/update.py +++ b/update.py @@ -6,7 +6,8 @@ try: with open("config.json") as f: CONFIG = json.load(f) except: - pass + print("ERROR: UNABLE TO LOAD CONFIG") + raise tildes = dict()