From 6ff69c88dfe4799ae0e01014186a57a2fa79537e Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 7 Mar 2022 06:58:14 +0530 Subject: [PATCH] ... --- kittens/ssh/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kittens/ssh/main.py b/kittens/ssh/main.py index f36b0d056..24e0f9a73 100644 --- a/kittens/ssh/main.py +++ b/kittens/ssh/main.py @@ -430,7 +430,7 @@ def main(args: List[str]) -> NoReturn: import subprocess with suppress(FileNotFoundError): raise SystemExit(subprocess.run(cmd).returncode) - raise SystemExit('Could not find the ssh executable, is it in your PATH') + raise SystemExit('Could not find the ssh executable, is it in your PATH?') if __name__ == '__main__':