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

  • Committer: John Arbash Meinel
  • Date: 2009-11-05 18:36:59 UTC
  • mfrom: (4786 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4788.
  • Revision ID: john@arbash-meinel.com-20091105183659-vgrehx0r7gpr23m2
Merge bzr.dev @4786, resolve NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
            relpath = urlutils.joinpath('/', path)
189
189
            if not relpath.startswith('/'):
190
190
                raise ValueError(relpath)
191
 
            return '.' + relpath
 
191
            return urlutils.escape('.' + relpath)
192
192
        else:
193
193
            raise errors.PathNotChild(client_path, self._root_client_path)
194
194