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

Add missing whitespace around arithmetic operator

This patch is needed to pass Automation Hub tests.
parent f406de14
No related branches found
No related tags found
No related merge requests found
......@@ -252,7 +252,8 @@ def main():
# If not defined, set domain from server name
if installer.domain_name is None and installer.server is not None:
installer.domain_name = installer.server[installer.server.find(".")+1:]
installer.domain_name = \
installer.server[installer.server.find(".") + 1:]
# If not defined, set realm from domain name
if installer.realm_name is None and installer.domain_name is not None:
installer.realm_name = installer.domain_name.upper()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment