From e797410e62557a1956740b2a58b5d94fed08b017 Mon Sep 17 00:00:00 2001 From: Thomas Woerner <twoerner@redhat.com> Date: Mon, 2 Oct 2017 17:04:23 +0200 Subject: [PATCH] library/ipaclient.py: Fix mixture of tabs and spaces for Python3 --- library/ipaclient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ipaclient.py b/library/ipaclient.py index df3189d5..2ee84be0 100644 --- a/library/ipaclient.py +++ b/library/ipaclient.py @@ -173,7 +173,7 @@ def get_ipa_conf(): result = dict() for item in ['basedn', 'realm', 'domain', 'server', 'host', 'xmlrpc_uri']: if parser.has_option('global', item): - value = parser.get('global', item) + value = parser.get('global', item) else: value = None if value: -- GitLab