1
0
Fork 0
mirror of synced 2024-07-26 18:11:13 -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:
data = yaml.load(fin)
return data
except Exception:
raise ReadingError('Could not read config file')
except Exception as e:
raise ReadingError('Could not read config file:\n%s' % e)
def get_config(self):
return self._config