running orca with no args should print help instead of throw an error #108
|
@ -21,7 +21,10 @@ attach_version_command(subparsers)
|
||||||
# Using argparse action="version" requires us to pass a single string
|
# Using argparse action="version" requires us to pass a single string
|
||||||
# and doesn't allow us to run our own custom version-printing function.
|
# and doesn't allow us to run our own custom version-printing function.
|
||||||
argv = sys.argv[1:]
|
argv = sys.argv[1:]
|
||||||
if argv[0] in ["-v", "--version"]:
|
|
||||||
|
if len(argv) == 0:
|
||||||
|
argv = ["-h"]
|
||||||
|
elif argv[0] in ["-v", "--version"]:
|
||||||
argv = ["version"]
|
argv = ["version"]
|
||||||
|
|
||||||
args = parser.parse_args(argv)
|
args = parser.parse_args(argv)
|
||||||
|
|
Loading…
Reference in New Issue