Skip to content
Snippets Groups Projects
Commit 747706a0 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

fix help print

parent 671a4b0d
No related merge requests found
......@@ -137,6 +137,10 @@ model_args.add_argument(
def run(argv=sys.argv[1:]):
if not argv:
parser.print_help()
parser.exit(1)
args = parser.parse_args(argv)
# It's hard to pass a tab in a shell, so we correct a common error:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment