From a4b658e613a2ca98792d922c108355f3ada26736 Mon Sep 17 00:00:00 2001 From: Mariam Ahhttouche Date: Wed, 25 Feb 2026 12:08:29 +0100 Subject: [PATCH] Fix typo --- plugins/modules/uv_python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/uv_python.py b/plugins/modules/uv_python.py index ac97910862..658f573025 100644 --- a/plugins/modules/uv_python.py +++ b/plugins/modules/uv_python.py @@ -231,7 +231,7 @@ class UV: self.module.fail_json(msg=f"Version {self.python_version_str} is not available.") if rc == 0 and installed_version >= Version(latest_version_str): ignored_rc, install_path, ignored_err = self._find_python() - return False, "", "", rc, [installed_version.__str__()], [install_path] + return False, "", "", rc, [installed_version_str], [install_path] if self.module.check_mode: return True, "", "", 0, [latest_version_str], [] # it's possible to have latest version already installed but not used as default