From a4604e3380a0ca1bbf6b5428a88a63e9b28b47e5 Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Sun, 22 Dec 2024 07:38:06 -0500 Subject: [PATCH] python_deploy: fix github dev channel updates Signed-off-by: Eric Callahan --- moonraker/components/update_manager/python_deploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moonraker/components/update_manager/python_deploy.py b/moonraker/components/update_manager/python_deploy.py index fa9a6ed..d92ed4e 100644 --- a/moonraker/components/update_manager/python_deploy.py +++ b/moonraker/components/update_manager/python_deploy.py @@ -362,7 +362,7 @@ class PythonDeploy(AppDeploy): pip_args = f"install -U git+https://github.com/{repo}" if rollback: pip_args += f"@{self.rollback_ref}" - elif self.channel == "dev": + elif self.channel == Channel.DEV: current_ref = self.current_sha if self.primary_branch is not None: pip_args += f"@{self.primary_branch}"