Use of yaml.safe_load instead of yaml_load
[osm/POL.git] / osm_policy_module / core / config.py
index 289894a..1bc9b2b 100644 (file)
@@ -43,7 +43,7 @@ class Config:
             path = "pol.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: