/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: Marius Kruger
  • Date: 2009-10-31 23:07:35 UTC
  • mfrom: (4780 +trunk)
  • mto: (4867.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4868.
  • Revision ID: marius.kruger@enerweb.co.za-20091031230735-4hyr0u14nci0xu7b
merge with bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
617
617
                raise InvalidHttpResponse(
618
618
                    t._remote_path('.bzr/smart'),
619
619
                    'Expected 200 response code, got %r' % (code,))
620
 
        except errors.InvalidHttpResponse, e:
 
620
        except (errors.InvalidHttpResponse, errors.ConnectionReset), e:
621
621
            raise errors.SmartProtocolError(str(e))
622
622
        return body_filelike
623
623