Changeset 6ecc6ba6 in mainline
- Timestamp:
-
2014-08-27T21:31:32Z
(11 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:
-
Legend:
- Unmodified
- Added
- Removed
-
r713b8ce7
|
r6ecc6ba6
|
|
29 | 29 | |
30 | 30 | import sys |
31 | | import json |
| 31 | import yaml |
32 | 32 | import re |
33 | 33 | |
… |
… |
|
143 | 143 | |
144 | 144 | with open(sys.argv[2], "rb") as fp: |
145 | | struct = json.load(fp) |
| 145 | struct = yaml.load(fp) |
146 | 146 | |
147 | 147 | if sys.argv[1] == "probe": |