Skip to content
Snippets Groups Projects
Commit e797410e authored by Thomas Woerner's avatar Thomas Woerner
Browse files

library/ipaclient.py: Fix mixture of tabs and spaces for Python3

parent 35403932
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment