Codebase list rust-stfu8 / 76b2847
fix the yaml load Sylvestre Ledru 1 year, 5 months ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
66
77 print("parsing excuses.yaml...", file=sys.stderr)
88 with open("excuses.yaml") as fp:
9 y = yaml.load(fp)
9 y = yaml.load(fp, Loader=yaml.Loader)
1010
1111 excuses = {}
1212 for e in y["sources"]: