~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Martin
  • Date: 2011-01-26 19:34:58 UTC
  • mto: (5609.10.1 2.3b5-dev)
  • mto: This revision was merged to the branch mainline in revision 5635.
  • Revision ID: gzlist@googlemail.com-20110126193458-o6mwxaymyinlzqjo
Blindly change all users of get_transport to address the function via the transport module

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
from bzrlib import (
31
31
    debug,
32
32
    errors,
 
33
    transport,
33
34
    ui,
34
35
    urlutils,
35
36
    )
41
42
from bzrlib.transport import (
42
43
    ConnectedTransport,
43
44
    _CoalescedOffset,
44
 
    get_transport,
45
45
    Transport,
46
46
    )
47
47
 
570
570
                                            self._user, self._password,
571
571
                                            host, port,
572
572
                                            base_path)
573
 
                new_transport = get_transport(new_url)
 
573
                new_transport = transport.get_transport(new_url)
574
574
        else:
575
575
            # Redirected to a different protocol
576
576
            new_url = self._unsplit_url(scheme,
577
577
                                        user, password,
578
578
                                        host, port,
579
579
                                        base_path)
580
 
            new_transport = get_transport(new_url)
 
580
            new_transport = transport.get_transport(new_url)
581
581
        return new_transport
582
582
 
583
583