changeset 6782 | b9d6ab187523 |
parent 6781 | b4b7261164d5 |
child 6784 | 18c429ea3a0e |
child 6794 | 8ff321a381d0 |
6781:b4b7261164d5 | 6782:b9d6ab187523 |
---|---|
203 fp.close() |
203 fp.close() |
204 os.unlink(tempname) |
204 os.unlink(tempname) |
205 |
205 |
206 def stream_out(repo, req): |
206 def stream_out(repo, req): |
207 req.respond(HTTP_OK, HGTYPE) |
207 req.respond(HTTP_OK, HGTYPE) |
208 streamclone.stream_out(repo, req, untrusted=True) |
208 for chunk in streamclone.stream_out(repo, untrusted=True): |
209 req.write(chunk) |