1
0
Fork 0
mirror of synced 2024-09-07 14:06:22 -04:00

Provide exception information to help debug issues when reading the config

This commit is contained in:
Joshua Blum 2015-04-24 12:47:42 +03:00
parent bdc1b2205f
commit 42dcc13c52

View file

@ -9,8 +9,8 @@ class ConfigReader(object):
with open(config_file_path) as fin: with open(config_file_path) as fin:
data = yaml.load(fin) data = yaml.load(fin)
return data return data
except Exception: except Exception as e:
raise ReadingError('Could not read config file') raise ReadingError('Could not read config file:\n%s' % e)
def get_config(self): def get_config(self):
return self._config return self._config