Skip to content

Commit 005749a

Browse files
author
Dan
committed
Updated docstrings
1 parent 029d9d7 commit 005749a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pssh/pssh_client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,14 +429,14 @@ def run_command(self, *args, **kwargs):
429429
'exception' : ConnectionErrorException(
430430
"Error connecting to host '%s:%s' - %s - retry %s/%s",
431431
host, port, 'Connection refused', 3, 3)}}
432-
432+
433433
**Using stdin**
434-
434+
435435
::
436-
436+
437437
output = client.run_command('read')
438438
stdin = output['localhost']['stdin']
439-
stdin.write("writing to stdin\n")
439+
stdin.write("writing to stdin\\n")
440440
stdin.flush()
441441
for line in output['localhost']['stdout']:
442442
print line

0 commit comments

Comments
 (0)