Mercurial > hg
changeset 1358:20abfd48e21c
Partially revert ssh change so we read all of remote ssh stream
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 27 Sep 2005 15:23:34 -0700 |
parents | 94586af53d2f |
children | 51ac9a79f3e5 |
files | mercurial/sshrepo.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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