From 3f0604c45fb4d38312b97cba01f2910272f78fdd Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 8 Jul 2024 05:56:02 +0530 Subject: [PATCH] kitty @ -> kitten @ --- kitty/rc/base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty/rc/base.py b/kitty/rc/base.py index 2590800df..8dd0f0dc6 100644 --- a/kitty/rc/base.py +++ b/kitty/rc/base.py @@ -8,7 +8,7 @@ from typing import TYPE_CHECKING, Any, Callable, Dict, FrozenSet, Iterable, Iter from kitty.cli import CompletionSpec, get_defaults_from_seq, parse_args, parse_option_spec from kitty.cli_stub import RCOptions as R -from kitty.constants import appname, list_kitty_resources, running_in_kitty +from kitty.constants import list_kitty_resources, running_in_kitty from kitty.types import AsyncResponse if TYPE_CHECKING: @@ -429,7 +429,7 @@ class RemoteCommand: def cli_params_for(command: RemoteCommand) -> Tuple[Callable[[], str], str, str, str]: - return (command.options_spec or '\n').format, command.args.spec, command.desc, f'{appname} @ {command.name}' + return (command.options_spec or '\n').format, command.args.spec, command.desc, f'kitten @ {command.name}' def parse_subcommand_cli(command: RemoteCommand, args: ArgsType) -> Tuple[Any, ArgsType]: