summaryrefslogtreecommitdiffstats
path: root/json2csv.py
diff options
context:
space:
mode:
Diffstat (limited to 'json2csv.py')
-rwxr-xr-xjson2csv.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/json2csv.py b/json2csv.py
index a9bcc81..719319e 100755
--- a/json2csv.py
+++ b/json2csv.py
@@ -1,5 +1,4 @@
#!/usr/bin/env python3
-# -*- coding: utf-8 -*-
#
# Read results in JSON format and output as CSV format.
#
@@ -17,7 +16,7 @@ from collections import OrderedDict
def main():
parser = argparse.ArgumentParser(
- description="Extract excess results from excess.json")
+ description="Read JSON results and output as CSV format")
parser.add_argument("json", help="input JSON file")
parser.add_argument("csv", nargs="?", help="optional output CSV file")
args = parser.parse_args()