~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Jelmer Vernooij
  • Date: 2011-08-17 10:11:13 UTC
  • mfrom: (5268.7.29 transport-segments)
  • mto: This revision was merged to the branch mainline in revision 6276.
  • Revision ID: jelmer@samba.org-20110817101113-bpjm13e3b5rj231y
Merge transport segments fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
669
669
 
670
670
    def _path_for_remote_call(self, client):
671
671
        """Return the path to be used for this bzrdir in a remote call."""
672
 
        return client.remote_path_from_transport(self.root_transport)
 
672
        return urlutils.split_segment_parameters_raw(
 
673
            client.remote_path_from_transport(self.root_transport))[0]
673
674
 
674
675
    def get_branch_transport(self, branch_format, name=None):
675
676
        self._ensure_real()