~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/memory.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-07-20 07:58:14 UTC
  • mfrom: (4547.2.4 bundle-typo)
  • Revision ID: pqm@pqm.ubuntu.com-20090720075814-ft956w3a10qwaygk
(andrew) Fix NameError when handling redirection loops in
        read_mergeable_from_transport.

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
        if len(path) == 0 or path[-1] != '/':
86
86
            path += '/'
87
87
        url = self._scheme + path
88
 
        result = MemoryTransport(url)
 
88
        result = self.__class__(url)
89
89
        result._dirs = self._dirs
90
90
        result._files = self._files
91
91
        result._locks = self._locks