This commit is contained in:
Kovid Goyal 2021-07-22 17:31:54 +05:30
parent 554c840d4e
commit 21a2768ec3
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -207,7 +207,7 @@ def parse_ssh_args(args: List[str]) -> Tuple[List[str], List[str], bool]:
else:
expecting_option_val = True
break
print('unknown option -- {}'.format(arg), file=sys.stderr)
print('unknown option -- {}'.format(arg[1:]), file=sys.stderr)
subprocess.Popen(['ssh']).wait()
raise SystemExit(255)
continue