From 80948edbb48b4ab1aad5213ba7c28e61af055dc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Gaillard?= Date: Mon, 19 Jan 2026 17:04:28 +0100 Subject: [PATCH] fix(gcode_shell_cmd): update comment to clarify config directory usage (#767) --- kiauh/extensions/gcode_shell_cmd/gcode_shell_cmd_extension.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiauh/extensions/gcode_shell_cmd/gcode_shell_cmd_extension.py b/kiauh/extensions/gcode_shell_cmd/gcode_shell_cmd_extension.py index 1ea1e78..d810546 100644 --- a/kiauh/extensions/gcode_shell_cmd/gcode_shell_cmd_extension.py +++ b/kiauh/extensions/gcode_shell_cmd/gcode_shell_cmd_extension.py @@ -97,7 +97,7 @@ class GcodeShellCmdExtension(BaseExtension): def install_example_cfg(self, instances: List[Klipper]): cfg_dirs = [instance.base.cfg_dir for instance in instances] - # copy extension to klippy/extras + # copy extension to config directories for cfg_dir in cfg_dirs: Logger.print_status(f"Create shell_command.cfg in '{cfg_dir}' ...") if check_file_exist(cfg_dir.joinpath("shell_command.cfg")):