/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

Merge from bzr.dev

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)