From c7699472a63a17dde551bc7faedade877c6f66ac Mon Sep 17 00:00:00 2001 From: jpclipffel <jpclipffel@users.noreply.github.com> Date: Wed, 27 Jul 2022 16:16:10 +0200 Subject: [PATCH] ipaclient: Removed invalid call `logger.info()` - Call was responsible for a `TypeError` exception - Call was not useful (already followed by a proper `logger.warning` call) Should fix issue #865: https://github.com/freeipa/ansible-freeipa/issues/865 --- roles/ipaclient/library/ipaclient_test.py | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/ipaclient/library/ipaclient_test.py b/roles/ipaclient/library/ipaclient_test.py index e82d4ed0..8e30494c 100644 --- a/roles/ipaclient/library/ipaclient_test.py +++ b/roles/ipaclient/library/ipaclient_test.py @@ -880,7 +880,6 @@ def main(): is_ipaddr = False if is_ipaddr: - logger.info() logger.warning( "It seems that you are using an IP address " "instead of FQDN as an argument to --server. The " -- GitLab