Replace yaml.load by yaml.safe_load
[osm/NG-SA.git] / src / osm_ngsa / osm_mon / core / config.py
index eb0e493..22b712f 100644 (file)
@@ -36,7 +36,7 @@ class Config:
             path = "config.yaml"
             config_file = pkg_resources.resource_filename(__name__, path)
         with open(config_file) as f:
-            self.conf = yaml.load(f)
+            self.conf = yaml.safe_load(f)
 
     def get(self, section, field=None):
         if not field: