diff --git a/lib/ansible/modules/packaging/os/flatpak.py b/lib/ansible/modules/packaging/os/flatpak.py index 42de3b82355..b8ee51efd9b 100644 --- a/lib/ansible/modules/packaging/os/flatpak.py +++ b/lib/ansible/modules/packaging/os/flatpak.py @@ -127,6 +127,7 @@ stdout: import subprocess from ansible.module_utils.six.moves.urllib.parse import urlparse from ansible.module_utils.basic import AnsibleModule +from ansible.module_utils._text import to_native def install_flat(module, binary, remote, name, method): @@ -203,7 +204,7 @@ def _flatpak_command(module, noop, command): result['stderr'] = stderr_data if result['rc'] != 0: module.fail_json(msg="Failed to execute flatpak command", **result) - return stdout_data + return to_native(stdout_data) def main(): diff --git a/lib/ansible/modules/packaging/os/flatpak_remote.py b/lib/ansible/modules/packaging/os/flatpak_remote.py index 8425e1b2190..fa0aa19abfb 100644 --- a/lib/ansible/modules/packaging/os/flatpak_remote.py +++ b/lib/ansible/modules/packaging/os/flatpak_remote.py @@ -120,6 +120,7 @@ stdout: import subprocess from ansible.module_utils.basic import AnsibleModule +from ansible.module_utils._text import to_bytes, to_native def add_remote(module, binary, name, flatpakrepo_url, method): @@ -168,7 +169,7 @@ def _flatpak_command(module, noop, command): result['stderr'] = stderr_data if result['rc'] != 0: module.fail_json(msg="Failed to execute flatpak command", **result) - return stdout_data + return to_native(stdout_data) def main(): @@ -205,7 +206,7 @@ def main(): if not binary: module.fail_json(msg="Executable '%s' was not found on the system." % executable, **result) - remote_already_exists = remote_exists(module, binary, bytes(name, 'utf-8'), method) + remote_already_exists = remote_exists(module, binary, to_bytes(name), method) if state == 'present' and not remote_already_exists: add_remote(module, binary, name, flatpakrepo_url, method)