Partially revert ssh change so we read all of remote ssh stream
authorMatt Mackall <mpm@selenic.com>
Tue, 27 Sep 2005 15:23:34 -0700
changeset 1358 20abfd48e21c
parent 1357 94586af53d2f
child 1359 51ac9a79f3e5
Partially revert ssh change so we read all of remote ssh stream
mercurial/sshrepo.py
--- a/mercurial/sshrepo.py
+++ b/mercurial/sshrepo.py
@@ -47,7 +47,9 @@ class sshrepository(remoterepository):
         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