X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fpal.py;h=5e419210aac2ae16e3ad55d437695b0905ed1eb6;hp=72493cb0d3a17204578681a4a94bac1cce9a18f2;hb=1077b448dd6c9397cfa5a3c2773ea4b8863f3016;hpb=f8a74509fe70a49a6152293e4e5add0d24dc6d1a;ds=sidebyside diff --git a/resources/tools/presentation/pal.py b/resources/tools/presentation/pal.py index 72493cb0d3..5e419210aa 100644 --- a/resources/tools/presentation/pal.py +++ b/resources/tools/presentation/pal.py @@ -49,10 +49,10 @@ def parse_args(): default="master", type=str, help="Release string of the product.") - parser.add_argument("-v", "--version", - default="0.1", + parser.add_argument("-w", "--week", + default="1", type=str, - help="Version of the product.") + help="Calendar week when the report is published.") parser.add_argument("-l", "--logging", choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"], @@ -108,7 +108,7 @@ def main(): generate_files(spec, data) if spec.output["output"] == "report": - generate_report(args.release, spec, args.version) + generate_report(args.release, spec, args.week) logging.info("Successfully finished.") elif spec.output["output"] == "CPTA": sys.stdout.write(generate_cpta(spec, data))