aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/collect_yaml.py
diff options
context:
space:
mode:
authorAaron LI <aaronly.me@outlook.com>2017-02-14 16:36:41 +0800
committerAaron LI <aaronly.me@outlook.com>2017-02-17 01:16:46 +0800
commitb6f1902c7c767104700ea86896eed9b27d389344 (patch)
tree889d6cbad5b5df3efa0ec06cc0dc8d6aa4695fa9 /scripts/collect_yaml.py
parent9556e0d27b8d592d9d6bba0b423405bf9a44b2b8 (diff)
downloadchandra-acis-analysis-b6f1902c7c767104700ea86896eed9b27d389344.tar.bz2
manifest.py: Add parameter 'splitlist' to gets() for CSV export
Diffstat (limited to 'scripts/collect_yaml.py')
-rwxr-xr-xscripts/collect_yaml.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/collect_yaml.py b/scripts/collect_yaml.py
index 0fb5ee6..05d4684 100755
--- a/scripts/collect_yaml.py
+++ b/scripts/collect_yaml.py
@@ -50,7 +50,7 @@ def main():
results = []
for fp in args.infile:
manifest = Manifest(fp)
- res = manifest.gets(keys)
+ res = manifest.gets(keys, splitlist=True)
if args.verbose:
print("FILE:{0}: {1}".format(fp, list(res.values())),
file=sys.stderr)