mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
fixed conditional error message (#36476)
This commit is contained in:
committed by
Ganesh Nalawade
parent
77b903bd85
commit
f207897f32
@@ -371,7 +371,7 @@ def main():
|
||||
if port and port not in have_port:
|
||||
failed_conditions.append('port ' + port)
|
||||
if failed_conditions:
|
||||
msg = 'One or more conditional statements have not be satisfied'
|
||||
msg = 'One or more conditional statements have not been satisfied'
|
||||
module.fail_json(msg=msg, failed_conditions=failed_conditions)
|
||||
|
||||
module.exit_json(**result)
|
||||
|
||||
Reference in New Issue
Block a user