From 61476aae62f26b3fab2c7a5a6342451b6d68b3fe Mon Sep 17 00:00:00 2001 From: InsanePrawn Date: Wed, 26 Jan 2022 17:53:53 +0100 Subject: [PATCH] main.py: add -E alias for --error-shell --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index fffdf62..e84f899 100755 --- a/main.py +++ b/main.py @@ -19,7 +19,7 @@ from ssh import cmd_ssh @click.group() -@click.option('--error-shell', 'error_shell', is_flag=True, default=False, help='Spawn shell after error occurs') +@click.option('--error-shell', '-E', 'error_shell', is_flag=True, default=False, help='Spawn shell after error occurs') @verbose_option @config_option @nowrapper_option