Mercurial > public > mercurial-scm > hg
diff mercurial/sshserver.py @ 6794:8ff321a381d0
Backed out changeset b9d6ab187523 (doesn't work on Python 2.3/2.4)
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Wed, 02 Jul 2008 10:58:27 +0200 |
parents | b9d6ab187523 |
children | 87abfefafe02 |
line wrap: on
line diff
--- a/mercurial/sshserver.py Sun Jun 29 14:20:01 2008 +0200 +++ b/mercurial/sshserver.py Wed Jul 02 10:58:27 2008 +0200 @@ -204,6 +204,4 @@ os.unlink(tempname) def do_stream_out(self): - for chunk in streamclone.stream_out(self.repo): - self.fout.write(chunk) - self.fout.flush() + streamclone.stream_out(self.repo, self.fout)