Skip to content
Snippets Groups Projects
Commit e2f8da94 authored by sguazt's avatar sguazt
Browse files

Core: raise an error if the configuration file does not exist (fix issue #1)

parent 56f93420
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,8 @@ class MetaConfManager(ABC):
else:
self._config_file = config_file
self.parser.read(open(self._config_file, "r"))
# NOTE: this will raise an error if the configuration file does not exist
self.parser.read_file(open(self._config_file, "r"))
self.read_login_data()
self.read_platform_options()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment