/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/remote.py

  • Committer: Andrew Bennetts
  • Date: 2008-03-28 08:58:43 UTC
  • mto: This revision was merged to the branch mainline in revision 3321.
  • Revision ID: andrew.bennetts@canonical.com-20080328085843-pdstuawpwy1hst6r
Deprecate Transport.get_shared_medium.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
        self._real_bzrdir = None
63
63
 
64
64
        if _client is None:
65
 
            shared_connection = transport.get_shared_medium()
66
 
            self._client = client._SmartClient(
67
 
                shared_connection.connection, shared_connection.base)
 
65
            medium = transport.get_smart_medium()
 
66
            self._client = client._SmartClient(medium, transport.base)
68
67
        else:
69
68
            self._client = _client
70
69
            return