summaryrefslogtreecommitdiff
path: root/src/leap/common/config
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2013-05-01 04:05:03 +0900
committerKali Kaneko <kali@leap.se>2013-05-01 04:07:16 +0900
commitf74c32a4a8e9eae9c8055c25d3848ff7d836e308 (patch)
treeef1a67d7d7aa38a31fde0d00e41c5c735c71a444 /src/leap/common/config
parent1ae67202f1878106a3a9770d22dcb695f604d5ee (diff)
return None if no key found, avoid KeyError
Diffstat (limited to 'src/leap/common/config')
-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)