don't display an error if the config file does not exist. assume it is JSON

This commit is contained in:
ThomasV 2016-04-12 19:56:47 +02:00
parent 7dbb23e8c6
commit 34a3af7ca3
1 changed files with 4 additions and 9 deletions

View File

@ -211,20 +211,15 @@ def read_user_config(path):
if not path:
return {}
config_path = os.path.join(path, "config")
if not os.path.exists(config_path):
return {}
try:
with open(config_path, "r") as f:
data = f.read()
except IOError:
print_msg("Error: Cannot read config file.", path)
return {}
try:
result = json.loads(data)
except:
try:
result = ast.literal_eval(data)
except:
print_msg("Error: Cannot read config file.")
return {}
print_msg("Warning: Cannot read config file.", config_path)
return {}
if not type(result) is dict:
return {}
return result