Skip to content

Commit 8b1ae88

Browse files
committed
Improves cmdline help
1 parent 82c5740 commit 8b1ae88

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

zxbpp/zxbpp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -809,11 +809,11 @@ def entry_point(args=None):
809809

810810
parser = argparse.ArgumentParser()
811811
parser.add_argument('-o', '--output', type=str, dest='output_file', default=None,
812-
help='Sets output file. If not specified, will output to console (STDOUT)')
812+
help='Sets output file. Default is to output to console (STDOUT)')
813813
parser.add_argument('-d', '--debug', dest='debug', default=OPTIONS.Debug.value, action='count',
814-
help='Enable verbosity/debugging output. Additional -d increase verbosity/debug level')
814+
help='Enable verbosity/debugging output. Additional -d increases verbosity/debug level')
815815
parser.add_argument('-e', '--errmsg', type=str, dest='stderr', default=None,
816-
help='Error messages file (standard error console by default)')
816+
help='Error messages file. Standard error console by default (STDERR)')
817817
parser.add_argument('input_file', type=str, default=None, nargs='?',
818818
help="File to parse. If not specified, console input will be used (STDIN)")
819819

0 commit comments

Comments
 (0)