~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/gio_transport.py

  • Committer: Jelmer Vernooij
  • Date: 2011-08-11 16:24:09 UTC
  • mto: (5268.7.8 transport-segments)
  • mto: This revision was merged to the branch mainline in revision 6067.
  • Revision ID: jelmer@samba.org-20110811162409-ouacri7g3pde8ygu
Use clone

Show diffs side-by-side

added added

removed removed

Lines of Context:
250
250
        self._set_connection(connection, credentials)
251
251
 
252
252
    def _remote_path(self, relpath):
253
 
        relative = urlutils.unescape(relpath).encode('utf-8')
254
 
        remote_path = urlutils.URL._combine_paths(self._path, relative)
255
 
        return remote_path
 
253
        return self._parsed_url.clone(relpath).path
256
254
 
257
255
    def has(self, relpath):
258
256
        """Does the target location exist?"""