summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJason DeTiberus <jdetiber@redhat.com>2015-03-13 03:02:29 -0400
committerJhon Honce <jhonce@redhat.com>2015-03-24 11:04:22 -0700
commitf6b2eaf7d12ff1f74551662cea46a8bad6beac33 (patch)
tree0ca8e412ac75ca346a73dc9203045d5eb8da22f7 /bin
parent7c7cb82fdd5583784fd5832b92886abf86934325 (diff)
downloadopenshift-f6b2eaf7d12ff1f74551662cea46a8bad6beac33.tar.gz
openshift-f6b2eaf7d12ff1f74551662cea46a8bad6beac33.tar.bz2
openshift-f6b2eaf7d12ff1f74551662cea46a8bad6beac33.tar.xz
openshift-f6b2eaf7d12ff1f74551662cea46a8bad6beac33.zip
Add spacing to implicit string concatenation for python backwards compatibility
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cluster8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/cluster b/bin/cluster
index 7afdce0e5..ad6e74577 100755
--- a/bin/cluster
+++ b/bin/cluster
@@ -18,10 +18,10 @@ class Cluster(object):
if 'ANSIBLE_SSH_ARGS' not in os.environ:
os.environ['ANSIBLE_SSH_ARGS'] = (
'-o ForwardAgent=yes'
- '-o StrictHostKeyChecking=no'
- '-o UserKnownHostsFile=/dev/null'
- '-o ControlMaster=auto'
- '-o ControlPersist=600s'
+ ' -o StrictHostKeyChecking=no'
+ ' -o UserKnownHostsFile=/dev/null'
+ ' -o ControlMaster=auto'
+ ' -o ControlPersist=600s'
)
def apply(self):