~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/memory.py

  • Committer: Jelmer Vernooij
  • Date: 2011-10-10 12:47:25 UTC
  • mto: This revision was merged to the branch mainline in revision 6211.
  • Revision ID: jelmer@samba.org-20111010124725-dvg76fjsf3cqcxx1
Add ControlDirFormat.supports_transport.

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
 
82
82
    def clone(self, offset=None):
83
83
        """See Transport.clone()."""
84
 
        path = self._combine_paths(self._cwd, offset)
 
84
        path = urlutils.URL._combine_paths(self._cwd, offset)
85
85
        if len(path) == 0 or path[-1] != '/':
86
86
            path += '/'
87
87
        url = self._scheme + path