Make errors visible when config fails to load

This commit is contained in:
Robert Miles 2018-11-19 10:34:26 -05:00
parent 5fed237611
commit f353f9b202
1 changed files with 2 additions and 1 deletions

View File

@ -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()