mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-02-04 07:51:50 +00:00
replace batch of redundant to_native()/to_text() occurrences (#11106)
* replace batch of redundant to_native()/to_text() occurrences * add changelog frag * snap sanity * rolling back snap for now * more cases in redhat_subscription
This commit is contained in:
parent
9b8867399e
commit
f785e9c780
14 changed files with 47 additions and 45 deletions
|
|
@ -120,7 +120,6 @@ id:
|
|||
"""
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule, env_fallback
|
||||
from ansible.module_utils.common.text.converters import to_native
|
||||
|
||||
HAS_PACKET_SDK = True
|
||||
|
||||
|
|
@ -163,7 +162,7 @@ def act_on_project(target_state, module, packet_conn):
|
|||
result_dict["id"] = matching_projects[0].id
|
||||
else:
|
||||
if len(matching_projects) > 1:
|
||||
_msg = f"More than projects matched for module call with state = absent: {to_native(matching_projects)}"
|
||||
_msg = f"More than projects matched for module call with state = absent: {matching_projects}"
|
||||
module.fail_json(msg=_msg)
|
||||
|
||||
if len(matching_projects) == 1:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue