~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-03-10 23:39:45 UTC
  • mfrom: (3254.1.4 public-iter-changes)
  • Revision ID: pqm@pqm.ubuntu.com-20080310233945-ed3k1rc4g1p9qcpj
Make Tree.iter_changes a public method (abentley)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2413
2413
                try:
2414
2414
                    repo_basis = tree.branch.repository.revision_tree(
2415
2415
                        tree.last_revision())
2416
 
                    if len(list(repo_basis._iter_changes(tree_basis))):
 
2416
                    if len(list(repo_basis.iter_changes(tree_basis))):
2417
2417
                        raise errors.BzrCheckError(
2418
2418
                            "Mismatched basis inventory content.")
2419
2419
                    tree._validate()