~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2008-03-07 14:15:10 UTC
  • mto: This revision was merged to the branch mainline in revision 3262.
  • Revision ID: aaron@aaronbentley.com-20080307141510-j1w043r5ir8lap88
Make Tree.iter_changes a public method

Show diffs side-by-side

added added

removed removed

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