~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/_pycurl.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-01 17:37:35 UTC
  • mfrom: (1979.1.2 boundary-quotes-57723)
  • Revision ID: pqm@pqm.ubuntu.com-20060901173735-543e9acad03760d1
(jam) fix bug #57723: failure when using SQUID proxy

Show diffs side-by-side

added added

removed removed

Lines of Context:
174
174
        data.seek(0)
175
175
 
176
176
        code = curl.getinfo(pycurl.HTTP_CODE)
177
 
        # mutter('url: %s header:\n%s', abspath, header.getvalue())
 
177
        # mutter('header:\n%r', header.getvalue())
178
178
        headers = _extract_headers(header.getvalue(), abspath)
179
179
        # handle_response will raise NoSuchFile, etc based on the response code
180
180
        return code, response.handle_response(abspath, code, headers, data)