summaryrefslogtreecommitdiffstats
path: root/utils/src
diff options
context:
space:
mode:
authorTim Bielawa <tbielawa@redhat.com>2016-08-26 07:40:24 -0700
committerTim Bielawa <tbielawa@redhat.com>2016-08-26 07:40:27 -0700
commit08016cf607b9111a10acabc118551e6d24e88628 (patch)
tree4301ab5cc0a5e9d49ac52770ba7703fef9f065e1 /utils/src
parent753d19bfafd1881cf16e4bb3b7623ec19262ff21 (diff)
downloadopenshift-08016cf607b9111a10acabc118551e6d24e88628.tar.gz
openshift-08016cf607b9111a10acabc118551e6d24e88628.tar.bz2
openshift-08016cf607b9111a10acabc118551e6d24e88628.tar.xz
openshift-08016cf607b9111a10acabc118551e6d24e88628.zip
Apply indentation changes to some other lines
Closes #2363
Diffstat (limited to 'utils/src')
-rw-r--r--utils/src/ooinstall/openshift_ansible.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/src/ooinstall/openshift_ansible.py b/utils/src/ooinstall/openshift_ansible.py
index c21536db0..001c58d73 100644
--- a/utils/src/ooinstall/openshift_ansible.py
+++ b/utils/src/ooinstall/openshift_ansible.py
@@ -130,11 +130,11 @@ def write_inventory_vars(base_inventory, multiple_masters, lb):
base_inventory.write('deployment_type={}\n'.format(ver.ansible_key))
if 'OO_INSTALL_ADDITIONAL_REGISTRIES' in os.environ:
- base_inventory.write('openshift_docker_additional_registries={}\n'
- .format(os.environ['OO_INSTALL_ADDITIONAL_REGISTRIES']))
+ base_inventory.write('openshift_docker_additional_registries={}\n'.format(
+ os.environ['OO_INSTALL_ADDITIONAL_REGISTRIES']))
if 'OO_INSTALL_INSECURE_REGISTRIES' in os.environ:
- base_inventory.write('openshift_docker_insecure_registries={}\n'
- .format(os.environ['OO_INSTALL_INSECURE_REGISTRIES']))
+ base_inventory.write('openshift_docker_insecure_registries={}\n'.format(
+ os.environ['OO_INSTALL_INSECURE_REGISTRIES']))
if 'OO_INSTALL_PUDDLE_REPO' in os.environ:
# We have to double the '{' here for literals
base_inventory.write("openshift_additional_repos=[{{'id': 'ose-devel', "