comparison mercurial/hgweb/protocol.py @ 6795:c228ae4bc89c

merge the backout head
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Wed, 02 Jul 2008 11:31:19 +0200
parents 88a1bcc5c6a7 8ff321a381d0
children 87abfefafe02
comparison
equal deleted inserted replaced
6793:c64f35a96448 6795:c228ae4bc89c
191 fp.close() 191 fp.close()
192 os.unlink(tempname) 192 os.unlink(tempname)
193 193
194 def stream_out(repo, req): 194 def stream_out(repo, req):
195 req.respond(HTTP_OK, HGTYPE) 195 req.respond(HTTP_OK, HGTYPE)
196 return streamclone.stream_out(repo, untrusted=True) 196 streamclone.stream_out(repo, req, untrusted=True)
197 return []