From ecc3ddf3baecfc17bbf17b01afb1c53b9c3962aa Mon Sep 17 00:00:00 2001 From: Aaron LI Date: Wed, 18 May 2016 10:00:07 +0800 Subject: json2csv.py: Fix program description --- json2csv.py | 3 +-- 1 file changed, 1 insertion(+), 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() -- cgit v1.2.2