Commit 704a8137 authored by Mark Canterbury's avatar Mark Canterbury
Browse files

Changed -z arg description

parent b0d1a027
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ def xmltest_console():
    parser.add_argument("-j", "--jsonoutput", action="store_true", help="Output JSON instead of text. Return code will always be zro")
    parser.add_argument("-q", "--quiet", action="store_true", help="Suppress output")
    parser.add_argument("-v", action="count", help="Verbose. Can be specified multiple times to get more detailed output")
    parser.add_argument("-z", action="store_true", help="Force non-rich-format output (pip install rich to get pretty output)")
    parser.add_argument("-z", action="store_true", help="Force non-rich-format output (i.e. without using rich library)")
    pargs = parser.parse_args()

    verbosity = pargs.v if pargs.v else 0