comparison 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
comparison
equal deleted inserted replaced
6782:b9d6ab187523 6794:8ff321a381d0
202 fp.close() 202 fp.close()
203 if tempname is not None: 203 if tempname is not None:
204 os.unlink(tempname) 204 os.unlink(tempname)
205 205
206 def do_stream_out(self): 206 def do_stream_out(self):
207 for chunk in streamclone.stream_out(self.repo): 207 streamclone.stream_out(self.repo, self.fout)
208 self.fout.write(chunk)
209 self.fout.flush()