summaryrefslogtreecommitdiff
path: root/src/leap/common/config/baseconfig.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/common/config/baseconfig.py')
-rw-r--r--src/leap/common/config/baseconfig.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/leap/common/config/baseconfig.py b/src/leap/common/config/baseconfig.py
index edb9b24..146f1e4 100644
--- a/src/leap/common/config/baseconfig.py
+++ b/src/leap/common/config/baseconfig.py
@@ -70,12 +70,11 @@ class BaseConfig:
@return: returns the value for the specified key in the config
"""
leap_assert(self._config_checker, "Load the config first")
- return self._config_checker.config[key]
+ return self._config_checker.config.get(key, None)
def get_path_prefix(self):
"""
Returns the platform dependant path prefixer
-
"""
return get_platform_prefixer().get_path_prefix(
standalone=self.standalone)