From 8bfbf8f1bcd233a8ecd34012e140eb29164ca5fb Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 9 Mar 2022 12:13:07 -0800 Subject: [PATCH] simplify error message --- jc/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/cli.py b/jc/cli.py index 149f5c6b..8bb3d846 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -452,7 +452,7 @@ def main(): error_msg = os.strerror(e.errno) utils.error_message([ - f'"{run_command_str}" command could not be run: {error_msg}. For details use the -d or -dd option.' + f'"{run_command_str}" command could not be run: {error_msg}.' ]) sys.exit(combined_exit_code(magic_exit_code, JC_ERROR_EXIT))