cosmetic
authorThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 14 Mar 2016 17:08:31 +0000 (18:08 +0100)
committerThierry Parmentelat <thierry.parmentelat@inria.fr>
Mon, 14 Mar 2016 17:08:31 +0000 (18:08 +0100)
nepi/util/sshfuncs.py

index 9ba5982..1b4d389 100644 (file)
@@ -410,8 +410,8 @@ def rcopy(source, dest,
     log_msg = " rcopy - host {} - command {} ".format(host, " ".join(map(str, args)))
     
     return _retry_rexec(args, log_msg, env = None, retry = retry, 
-            tmp_known_hosts = tmp_known_hosts,
-            blocking = True)
+                        tmp_known_hosts = tmp_known_hosts,
+                        blocking = True)
 
 def rspawn(command, pidfile, 
            stdout = '/dev/null', 
@@ -837,7 +837,7 @@ def _communicate(proc, input, timeout=None, err_on_timeout=True):
             # we can write up to PIPE_BUF bytes without risk
             # blocking.  POSIX defines PIPE_BUF >= 512
             bytes_written = os.write(proc.stdin.fileno(),
-                    buffer(input, input_offset, 512))
+                                     buffer(input, input_offset, 512))
             input_offset += bytes_written
 
             if input_offset >= len(input):