diff --git a/kiauh/components/klipperscreen/klipperscreen.py b/kiauh/components/klipperscreen/klipperscreen.py index 3ed0694..692b722 100644 --- a/kiauh/components/klipperscreen/klipperscreen.py +++ b/kiauh/components/klipperscreen/klipperscreen.py @@ -103,8 +103,8 @@ def patch_klipperscreen_update_manager(instances: List[Moonraker]) -> None: options=[ ("type", "git_repo"), ("path", KLIPPERSCREEN_DIR.as_posix()), - ("orgin", KLIPPERSCREEN_REPO), - ("manages_servcies", "KlipperScreen"), + ("origin", KLIPPERSCREEN_REPO), + ("managed_services", "KlipperScreen"), ("env", f"{KLIPPERSCREEN_ENV_DIR}/bin/python"), ("requirements", KLIPPERSCREEN_REQ_FILE.as_posix()), ("install_script", KLIPPERSCREEN_INSTALL_SCRIPT.as_posix()), diff --git a/kiauh/extensions/telegram_bot/moonraker_telegram_bot_extension.py b/kiauh/extensions/telegram_bot/moonraker_telegram_bot_extension.py index 7bbc749..a989e25 100644 --- a/kiauh/extensions/telegram_bot/moonraker_telegram_bot_extension.py +++ b/kiauh/extensions/telegram_bot/moonraker_telegram_bot_extension.py @@ -175,7 +175,7 @@ class TelegramBotExtension(BaseExtension): options=[ ("type", "git_repo"), ("path", str(TG_BOT_DIR)), - ("orgin", TG_BOT_REPO), + ("origin", TG_BOT_REPO), ("env", env_py), ("requirements", "scripts/requirements.txt"), ("install_script", "scripts/install.sh"),