Skip to content

Commit

Permalink
added support for newer pyyaml versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Galdorino committed Sep 3, 2019
1 parent 59b5ab6 commit feabd42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/annex-convert
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if os.path.exists(custom_objects_filename):
with open(args.infile, 'r') as inf:
src = inf.read()

parsed = yaml.load(src)
parsed = yaml.load(src, Loader=yaml.Loader)

with open(args.outfile, 'w') as outf:
t = TikzPicture(parsed)
Expand Down

0 comments on commit feabd42

Please sign in to comment.