/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

  • Committer: Robert Collins
  • Date: 2006-04-05 05:43:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1638.
  • Revision ID: robertc@robertcollins.net-20060405054306-bfe845e73979aadd
Fix calling relpath() and abspath() on transports at their root.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
                           TransportError, ConnectionError,
32
32
                           DependencyNotPresent)
33
33
from bzrlib.trace import mutter
34
 
from bzrlib.transport import Transport
 
34
from bzrlib.transport import ensure_netloc
35
35
from bzrlib.transport.http import HttpTransportBase, extract_auth, HttpServer
36
36
 
37
37
try:
41
41
    raise DependencyNotPresent('pycurl', e)
42
42
 
43
43
 
 
44
ensure_netloc('http+pycurl')
 
45
 
 
46
 
44
47
class PyCurlTransport(HttpTransportBase):
45
48
    """http client transport using pycurl
46
49