mirror of
1
0
Fork 0
This commit is contained in:
Joshua Blum 2015-04-24 09:52:25 +00:00
commit 0b9d517165
1 changed files with 2 additions and 2 deletions

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