Changed yaml.load into yaml.safe_load (#9841)
parent
586e54f8bf
commit
fdb698bef0
|
@ -269,7 +269,7 @@ def load_config(path):
|
|||
calendars = {}
|
||||
try:
|
||||
with open(path) as file:
|
||||
data = yaml.load(file)
|
||||
data = yaml.safe_load(file)
|
||||
for calendar in data:
|
||||
try:
|
||||
calendars.update({calendar[CONF_CAL_ID]:
|
||||
|
|
Loading…
Reference in New Issue