mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-22 13:19:13 +00:00
Fix typo
This commit is contained in:
parent
d078c66f27
commit
a4b658e613
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue