Parcourir la source

Add spacing to implicit string concatenation for python backwards compatibility

Jason DeTiberus il y a 10 ans
Parent
commit
f6b2eaf7d1
1 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 4 4
      bin/cluster

+ 4 - 4
bin/cluster

@@ -18,10 +18,10 @@ class Cluster(object):
         if 'ANSIBLE_SSH_ARGS' not in os.environ:
         if 'ANSIBLE_SSH_ARGS' not in os.environ:
             os.environ['ANSIBLE_SSH_ARGS'] = (
             os.environ['ANSIBLE_SSH_ARGS'] = (
                 '-o ForwardAgent=yes'
                 '-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):
     def apply(self):