/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: Michael Hudson
  • Date: 2009-10-23 03:17:58 UTC
  • mto: This revision was merged to the branch mainline in revision 4778.
  • Revision ID: michael.hudson@canonical.com-20091023031758-p1wfu3tflagfuar0
very simple fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
            relpath = urlutils.joinpath('/', path)
184
184
            if not relpath.startswith('/'):
185
185
                raise ValueError(relpath)
186
 
            return '.' + relpath
 
186
            return urlutils.escape('.' + relpath)
187
187
        else:
188
188
            raise errors.PathNotChild(client_path, self._root_client_path)
189
189