/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/tests/test_http.py

  • Committer: James Blackwell
  • Date: 2006-05-05 01:05:04 UTC
  • mfrom: (1697 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1700.
  • Revision ID: jblack@merconline.com-20060505010504-264cb48507e53b64
mergedĀ mainline

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
    def _get_pycurl_maybe(self):
138
138
        try:
139
139
            from bzrlib.transport.http._pycurl import PyCurlTransport
140
 
            self._transport = PyCurlTransport
 
140
            return PyCurlTransport
141
141
        except DependencyNotPresent:
142
142
            raise TestSkipped('pycurl not present')
143
143