We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 36fb992 + 8e761e4 commit 93abd3aCopy full SHA for 93abd3a
gitconsensus/config.py
@@ -15,7 +15,7 @@ def reloadSettings():
15
global settings
16
if os.path.isfile(path):
17
with open(path, 'r') as f:
18
- settings = yaml.load(f)
+ settings = yaml.safe_load(f)
19
return settings
20
21
0 commit comments