Skip to content

Commit 1b03671

Browse files
author
Dan
committed
Updated output representation
1 parent 8d0e7a6 commit 1b03671

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pssh/output.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,9 @@ def __repr__(self):
7676
return "{linesep}\thost={host}{linesep}" \
7777
"\texit_code={exit_code}{linesep}" \
7878
"\tcmd={cmd}{linesep}\tchannel={channel}{linesep}" \
79-
"\tstdout={stdout}{linesep}\tstderr={stderr}{linesep}\tstdin={stdin}{linesep}\
80-
\texception={exception}{linesep}".format(
79+
"\tstdout={stdout}{linesep}\tstderr={stderr}{linesep}" \
80+
"\tstdin={stdin}{linesep}" \
81+
"\texception={exception}{linesep}".format(
8182
host=self.host, cmd=self.cmd, channel=self.channel,
8283
stdout=self.stdout, stdin=self.stdin, stderr=self.stderr,
8384
exception=self.exception, linesep=linesep,

0 commit comments

Comments
 (0)