Exemple #1
0
def _forwardoutput(ui, pipe):
    """display all data currently available on pipe as remote output.

    This is non blocking."""
    s = util.readpipe(pipe)
    if s:
        for l in s.splitlines():
            ui.status(_("remote: "), l, '\n')
Exemple #2
0
def _forwardoutput(ui, pipe):
    """display all data currently available on pipe as remote output.

    This is non blocking."""
    s = util.readpipe(pipe)
    if s:
        for l in s.splitlines():
            ui.status(_("remote: "), l, '\n')
 def readerr(self):
     s = util.readpipe(self.pipee)
     if s:
         for l in s.splitlines():
             self.ui.status(_("remote: "), l, '\n')
Exemple #4
0
 def readerr(self):
     s = util.readpipe(self.pipee)
     if s:
         for l in s.splitlines():
             self.ui.status(_("remote: "), l, '\n')