Changeset 6ecc6ba6 in mainline


Ignore:
Timestamp:
2014-08-27T21:31:32Z (10 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
57292d3
Parents:
713b8ce7
Message:

Switch to YAML to gain comments and lose tabs.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/autogen.py

    r713b8ce7 r6ecc6ba6  
    2929
    3030import sys
    31 import json
     31import yaml
    3232import re
    3333
     
    143143
    144144        with open(sys.argv[2], "rb") as fp:
    145                 struct = json.load(fp)
     145                struct = yaml.load(fp)
    146146
    147147        if sys.argv[1] == "probe":
Note: See TracChangeset for help on using the changeset viewer.