/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/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2007-06-28 23:18:09 UTC
  • mfrom: (2562 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2566.
  • Revision ID: john@arbash-meinel.com-20070628231809-pqbt7puoqj8bl07b
[merge] bzr.dev 2562

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
                raise errors.InvalidHttpResponse(url,
99
99
                    'Opening header line did not start with HTTP: %s'
100
100
                    % (first_line,))
101
 
                assert False, 'Opening header line was not HTTP'
102
101
            else:
103
102
                break # We are done parsing
104
103
        first_header = False
255
254
 
256
255
        try_again = False
257
256
        # The server does not gives us enough data or
258
 
        # bogus-looking result, let's try again with
 
257
        # a bogus-looking result, let's try again with
259
258
        # a simpler request if possible.
260
259
        if self._range_hint == 'multi':
261
260
            self._range_hint = 'single'