From 21059402862ed29fc8a230aef9985313af820635 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 28 Jun 2021 19:38:51 +0530 Subject: [PATCH] Better error message for +launch --- __main__.py | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/__main__.py b/__main__.py index 458b06506..08335d729 100644 --- a/__main__.py +++ b/__main__.py @@ -49,13 +49,22 @@ def complete(args: List[str]) -> None: def launch(args: List[str]) -> None: import runpy sys.argv = args[1:] - exe = args[1] + try: + exe = args[1] + except IndexError: + raise SystemExit( + 'usage: kitty +launch script.py [arguments to be passed to script.py ...]\n\n' + 'script.py will be run with full access to kitty code. If script.py is ' + 'prefixed with a : it will be searched for in PATH' + ) if exe.startswith(':'): import shutil q = shutil.which(exe[1:]) if not q: - raise SystemExit('{} not found in PATH'.format(args[1][1:])) + raise SystemExit(f'{exe[1:]} not found in PATH') exe = q + if not os.path.exists(exe): + raise SystemExit(f'{exe} does not exist') runpy.run_path(exe, run_name='__main__')