changeset 6782 | b9d6ab187523 |
parent 6563 | 3b6f18851d87 |
child 6794 | 8ff321a381d0 |
--- a/mercurial/sshserver.py Sun Jun 29 11:34:36 2008 +0200 +++ b/mercurial/sshserver.py Sun Jun 29 14:20:01 2008 +0200 @@ -204,4 +204,6 @@ os.unlink(tempname) def do_stream_out(self): - streamclone.stream_out(self.repo, self.fout) + for chunk in streamclone.stream_out(self.repo): + self.fout.write(chunk) + self.fout.flush()