We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae9ba6f commit 427a9ecCopy full SHA for 427a9ec
commitizen/config/yaml_config.py
@@ -38,7 +38,7 @@ def set_key(self, key, value):
38
We use to update the version number.
39
"""
40
with open(self.path, "r") as yaml_file:
41
- parser = yaml.load(yaml_file)
+ parser = yaml.load(yaml_file, Loader=yaml.FullLoader)
42
43
parser["commitizen"][key] = value
44
with open(self.path, "w") as yaml_file:
0 commit comments