ipaclient_get_facts: Fix closing bracket does not match indentation

This patch is needed to pass Automation Hub tests.
This commit is contained in:
Thomas Woerner
2021-11-23 13:55:10 +01:00
parent a86970efe1
commit f406de14e8

View File

@@ -124,7 +124,7 @@ def get_ipa_conf():
basedn=basedn,
realm=realm,
domain=domain
)
)
def get_ipa_version():
@@ -151,7 +151,7 @@ def get_ipa_version():
vendor_version=version.VENDOR_VERSION,
version=version.VERSION,
version_info=version_info
)
)
def main():
@@ -197,7 +197,7 @@ def main():
module.exit_json(
changed=False,
ansible_facts=dict(ipa=facts)
)
)
if __name__ == '__main__':