# HG changeset patch # User Bryan O'Sullivan # Date 1205733571 25200 # Node ID 509bb4af1502e6118923c4d457835e45240ba846 # Parent d6e5e6f7b2d859b6ef04ad837b9fba301cb3061b# Parent 91ac1726730abe792b20ed6fa02874d78710583e Automated merge with http://hg.intevation.org/mercurial/crew diff -r d6e5e6f7b2d8 -r 509bb4af1502 mercurial/httprepo.py --- a/mercurial/httprepo.py Sun Mar 16 23:30:47 2008 +0100 +++ b/mercurial/httprepo.py Sun Mar 16 22:59:31 2008 -0700 @@ -94,9 +94,9 @@ # if auth required, some data sent twice, so rewind here data.seek(0) for chunk in util.filechunkiter(data): - connection.send(self, chunk) + connection.sendall(self, chunk) else: - connection.send(self, data) + connection.sendall(self, data) return _sendfile class httpconnection(keepalive.HTTPConnection):