~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-08-20 05:12:03 UTC
  • mfrom: (4630.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090820051203-riyg1vh31w486hc6
(vila) Fix some more pycurl related karmic test failures

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