/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/transport/memory.py

  • Committer: Robert Collins
  • Date: 2006-09-17 21:24:27 UTC
  • mfrom: (2019 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2020.
  • Revision ID: robertc@robertcollins.net-20060917212427-343ef161b483b8e4
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
227
227
        relpath = urlutils.unescape(relpath)
228
228
        if relpath.find('..') != -1:
229
229
            raise AssertionError('relpath contains ..')
 
230
        if relpath == '':
 
231
            return '/'
230
232
        if relpath[0] == '/':
231
233
            return relpath
232
234
        if relpath == '.':