/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/smart/repository.py

  • Committer: Andrew Bennetts
  • Date: 2007-08-17 08:31:52 UTC
  • mto: This revision was merged to the branch mainline in revision 3320.
  • Revision ID: andrew.bennetts@canonical.com-20070817083152-rmhqerwquini7tiz
Add translate_client_path method to SmartServerRequest.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
        :param path: The path for the repository.
44
44
        :return: A smart server from self.do_repository_request().
45
45
        """
46
 
        transport = self._backing_transport.clone(path)
 
46
        transport = self.transport_from_client_path(path)
47
47
        bzrdir = BzrDir.open_from_transport(transport)
48
48
        repository = bzrdir.open_repository()
49
49
        return self.do_repository_request(repository, *args)