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

  • Committer: John Arbash Meinel
  • Date: 2006-10-16 05:08:45 UTC
  • mto: This revision was merged to the branch mainline in revision 2089.
  • Revision ID: john@arbash-meinel.com-20061016050845-a2bc6be4f3a35539
Create a deprecated bzrlib.tree.RevisionTree() in favor of bzrlib.revisiontree.RevisionTree()

Show diffs side-by-side

added added

removed removed

Lines of Context:
423
423
                xml = self.read_basis_inventory()
424
424
                inv = xml6.serializer_v6.read_inventory_from_string(xml)
425
425
                if inv is not None and inv.revision_id == revision_id:
426
 
                    return bzrlib.tree.RevisionTree(self.branch.repository,
427
 
                                                    inv, revision_id)
 
426
                    return bzrlib.revisiontree.RevisionTree(
 
427
                        self.branch.repository, inv, revision_id)
428
428
            except (NoSuchFile, errors.BadInventoryFormat):
429
429
                pass
430
430
        # No cached copy available, retrieve from the repository.