/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: 2007-04-16 17:49:35 UTC
  • mto: This revision was merged to the branch mainline in revision 2435.
  • Revision ID: andrew.bennetts@canonical.com-20070416174935-oieoe0rv424m14ix
Rename SmartClient to _SmartClient.

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
 
159
159
    def _call2(self, method, *args):
160
160
        """Call a method on the remote server."""
161
 
        return client.SmartClient(self._medium).call(method, *args)
 
161
        return client._SmartClient(self._medium).call(method, *args)
162
162
 
163
163
    def _call_with_body_bytes(self, method, args, body):
164
164
        """Call a method on the remote server with body bytes."""
165
 
        smart_client = client.SmartClient(self._medium)
 
165
        smart_client = client._SmartClient(self._medium)
166
166
        return smart_client.call_with_body_bytes(method, args, body)
167
167
 
168
168
    def has(self, relpath):