diff --git a/bin/sarif-extract-scans b/bin/sarif-extract-scans index a171e8b..fec0f02 100755 --- a/bin/sarif-extract-scans +++ b/bin/sarif-extract-scans @@ -33,9 +33,9 @@ parser.add_argument('outdir', metavar='output-dir', type=str, help='output direc parser.add_argument('csvout', metavar='csv-outfile', type=str, help='processing status csv output file name to use') parser.add_argument('-r', '--write-raw-tables', action="store_true", help='Write the raw sarif tables to the output directory') -parser.add_argument('-f','--input-signature', metavar='input-signature', type=str, default="LGTM", - help='Signature of the sarif, as in, where it was generated it may affect the signature.' - 'Options: LGTM, CLI' +parser.add_argument('-f','--input-signature', metavar='input-signature', type=str, default="CLI", + help='Signature of the sarif, as in, where it was generated it may affect the signature.\n' + 'Options: LGTM, CLI\n' 'If current represented signatures are not sufficient, view signature_single.py for how to support further signatures.' ' Default: "%(default)s"') args = parser.parse_args()