Changing --show_tracebacks to --show-tracebacks

This commit is contained in:
Bob Tolbert 2013-12-28 06:58:08 -07:00
parent 5040c29946
commit 05899423df
2 changed files with 4 additions and 2 deletions

View File

@ -32,10 +32,12 @@ Command line options
.. versionadded:: 0.9.11
.. cmdoption:: --show_tracebacks
.. cmdoption:: --show-tracebacks
Print extended tracebacks for Hy exceptions.
.. versionadded:: 0.9.12
.. cmdoption:: -v
Print the Hy version number and exit.

View File

@ -244,7 +244,7 @@ def cmdline_handler(scriptname, argv):
parser.add_argument("-v", action="version", version=VERSION)
parser.add_argument("--show_tracebacks", action="store_true",
parser.add_argument("--show-tracebacks", action="store_true",
help="show complete tracebacks for Hy exceptions")
# this will contain the script/program name and any arguments for it.