diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2015-03-13 03:02:29 -0400 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2015-03-24 11:04:22 -0700 |
commit | f6b2eaf7d12ff1f74551662cea46a8bad6beac33 (patch) | |
tree | 0ca8e412ac75ca346a73dc9203045d5eb8da22f7 | |
parent | 7c7cb82fdd5583784fd5832b92886abf86934325 (diff) | |
download | openshift-f6b2eaf7d12ff1f74551662cea46a8bad6beac33.tar.gz openshift-f6b2eaf7d12ff1f74551662cea46a8bad6beac33.tar.bz2 openshift-f6b2eaf7d12ff1f74551662cea46a8bad6beac33.tar.xz openshift-f6b2eaf7d12ff1f74551662cea46a8bad6beac33.zip |
Add spacing to implicit string concatenation for python backwards compatibility
-rwxr-xr-x | bin/cluster | 8 |
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): |