# HG changeset patch # User Matt Mackall # Date 1127859814 25200 # Node ID 20abfd48e21ce0ccecbe91d79fe74d2cf8541175 # Parent 94586af53d2f45a8e294dbc6439d609518efc1d7 Partially revert ssh change so we read all of remote ssh stream diff -r 94586af53d2f -r 20abfd48e21c mercurial/sshrepo.py --- a/mercurial/sshrepo.py Tue Sep 27 15:01:49 2005 -0700 +++ b/mercurial/sshrepo.py Tue Sep 27 15:23:34 2005 -0700 @@ -47,7 +47,9 @@ try: self.pipeo.close() self.pipei.close() - readerr() + # read the error descriptor until EOF + for l in self.pipee: + self.ui.status("remote: ", l) self.pipee.close() except: pass