/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: Andrew Bennetts
  • Date: 2009-11-19 06:28:13 UTC
  • mfrom: (4811 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4812.
  • Revision ID: andrew.bennetts@canonical.com-20091119062813-t6sd6gwbot8nfyze
MergeĀ lp:bzr.

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