From d8d600cc36bde4e6216b935f87a765599e896714 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 29 Mar 2021 14:51:48 -0700 Subject: [PATCH] add reference to -h for help --- jc/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/cli.py b/jc/cli.py index 527a01d6..94c9f86f 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -421,7 +421,7 @@ def magic(): elif run_command is None: return else: - jc.utils.error_message(f'parser not found for "{run_command}"') + jc.utils.error_message(f'parser not found for "{run_command}". Use "jc -h" for help.') sys.exit(1)