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

  • Committer: Andrew Bennetts
  • Date: 2008-05-19 08:42:32 UTC
  • mto: This revision was merged to the branch mainline in revision 3439.
  • Revision ID: andrew.bennetts@canonical.com-20080519084232-rr0vsqi1gk1qt2lp
Remove 'base' from _SmartClient entirely, now that the medium has it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
            should only be used for testing purposes; normally this is
85
85
            determined from the medium.
86
86
        """
87
 
#        print 'RemoteTransport.__init__', url, _from_transport, medium, _client
88
87
        super(RemoteTransport, self).__init__(url,
89
88
                                              _from_transport=_from_transport)
90
89
 
111
110
                medium = self._shared_connection.connection
112
111
 
113
112
        if _client is None:
114
 
#            print '**', medium, self.base
115
 
#            if self.base != 'bzr+' + medium.base:
116
 
#                import pdb; pdb.set_trace()
117
 
            self._client = client._SmartClient(medium, self.base)
 
113
            self._client = client._SmartClient(medium)
118
114
        else:
119
115
            self._client = _client
120
116