/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/client.py

  • Committer: Andrew Bennetts
  • Date: 2008-01-22 00:27:42 UTC
  • mto: This revision was merged to the branch mainline in revision 3200.
  • Revision ID: andrew.bennetts@canonical.com-20080122002742-jq55lz7umd0bcvx1
Don't transmit URL-escaped relpaths in the smart protocol, which is back to how things worked in bzr 1.1 and earlier.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
        else:
92
92
            medium_base = urlutils.join(self._shared_connection.base, '/')
93
93
            
94
 
        return urlutils.relative_url(medium_base, transport.base).encode('utf8')
 
94
        rel_url = urlutils.relative_url(medium_base, transport.base)
 
95
        return urlutils.unescape(rel_url).encode('utf8')