# HG changeset patch # User Vadim Gelfer # Date 1150473148 25200 # Node ID e58889a9d3785ee53f4e3d2ba55edb6698e47097 # Parent bd9c39e8f38bd3745b7fb99018303a4fcbf8f650# Parent 5eb02f9ed80449fe0dd72e5e794f6a727b2b8ef7 merge with crew. diff -r bd9c39e8f38b -r e58889a9d378 mercurial/keepalive.py --- a/mercurial/keepalive.py Fri Jun 16 07:07:11 2006 -0700 +++ b/mercurial/keepalive.py Fri Jun 16 08:52:28 2006 -0700 @@ -99,7 +99,7 @@ """ -# $Id: keepalive.py,v 1.13 2005/10/22 21:57:28 mstenner Exp $ +# $Id: keepalive.py,v 1.14 2006/04/04 21:00:32 mstenner Exp $ import urllib2 import httplib @@ -249,12 +249,14 @@ r._url = req.get_full_url() r._connection = h r.code = r.status + r.headers = r.msg + r.msg = r.reason if r.status == 200 or not HANDLE_ERRORS: return r else: - return self.parent.error('http', req, r, r.status, r.reason, r.msg) - + return self.parent.error('http', req, r, + r.status, r.msg, r.headers) def _reuse_connection(self, h, req, host): """start the transaction with a re-used connection @@ -371,7 +373,7 @@ self.close() def info(self): - return self.msg + return self.headers def geturl(self): return self._url diff -r bd9c39e8f38b -r e58889a9d378 tests/test-bad-pull.out --- a/tests/test-bad-pull.out Fri Jun 16 07:07:11 2006 -0700 +++ b/tests/test-bad-pull.out Fri Jun 16 08:52:28 2006 -0700 @@ -2,8 +2,4 @@ 255 copy: No such file or directory abort: HTTP Error 404 -Date: -Content-Type: text/html -Connection: close - 0