# HG changeset patch # User Bryan O'Sullivan # Date 1205765963 25200 # Node ID c92cf92c55a6ae8cc99465ebd07c594f8de122ef # Parent 91ac1726730abe792b20ed6fa02874d78710583e Backed out changeset 91ac1726730a diff -r 91ac1726730a -r c92cf92c55a6 mercurial/httprepo.py --- a/mercurial/httprepo.py Sun Mar 16 22:59:04 2008 -0700 +++ b/mercurial/httprepo.py Mon Mar 17 07:59:23 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.sendall(self, chunk) + connection.send(self, chunk) else: - connection.sendall(self, data) + connection.send(self, data) return _sendfile class httpconnection(keepalive.HTTPConnection):