Skip to content

Commit

Permalink
move yaml version to 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kalefranz committed Mar 21, 2016
1 parent bd182f9 commit 03d6bb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def get_yaml():
def yaml_load(filehandle):
yaml = get_yaml()
try:
return yaml.load(filehandle, Loader=yaml.RoundTripLoader, version="1.1")
return yaml.load(filehandle, Loader=yaml.RoundTripLoader, version="1.2")
except AttributeError:
return yaml.load(filehandle)

Expand Down

0 comments on commit 03d6bb8

Please sign in to comment.