##// END OF EJS Templates
sshpeer: check pipe validity before forwarding output from it...
Matt Harbison -
r36851:46f4d71e default
parent child Browse files
Show More
@@ -32,10 +32,11 b' def _forwardoutput(ui, pipe):'
32 """display all data currently available on pipe as remote output.
32 """display all data currently available on pipe as remote output.
33
33
34 This is non blocking."""
34 This is non blocking."""
35 s = util.readpipe(pipe)
35 if pipe:
36 if s:
36 s = util.readpipe(pipe)
37 for l in s.splitlines():
37 if s:
38 ui.status(_("remote: "), l, '\n')
38 for l in s.splitlines():
39 ui.status(_("remote: "), l, '\n')
39
40
40 class doublepipe(object):
41 class doublepipe(object):
41 """Operate a side-channel pipe in addition of a main one
42 """Operate a side-channel pipe in addition of a main one
General Comments 0
You need to be logged in to leave comments. Login now