Mercurial > hg
changeset 6292:dc2f360444a0
Merge
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Mon, 17 Mar 2008 08:04:09 -0700 |
parents | 509bb4af1502 (current diff) c92cf92c55a6 (diff) |
children | 9cd6292abfdf |
files | |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/httprepo.py Sun Mar 16 22:59:31 2008 -0700 +++ b/mercurial/httprepo.py Mon Mar 17 08:04:09 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):