Description: Use yaml.safe_load() instead of yaml.load
Author: Thomas Goirand <zigo@debian.org>
Bug-Debian: https://bugs.debian.org/1022082
Forwarded: no
Last-Update: 2022-11-04

--- refstack-client-0.0.0~2021.08.18.fa73ef2524.orig/refstack_client/refstack_client.py
+++ refstack-client-0.0.0~2021.08.18.fa73ef2524/refstack_client/refstack_client.py
@@ -66,7 +66,7 @@ def get_input():
 def read_accounts_yaml(path):
     """Reads a set of accounts from the specified file"""
     with open(path, 'r') as yaml_file:
-        accounts = yaml.load(yaml_file)
+        accounts = yaml.safe_load(yaml_file)
     return accounts
 
 
