Fix for bug 1414, bug 1435 & bug 1438 - Multi-tenancy with keystone as backend
[osm/MON.git] / osm_mon / core / config.py
index c4c3972..cd99ffc 100644 (file)
@@ -48,7 +48,7 @@ class Config:
     def get(self, section, field=None):
         if not field:
             return self.conf[section]
-        return self.conf[section][field]
+        return self.conf[section].get(field)
 
     def set(self, section, field, value):
         if section not in self.conf: