~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/inventory.py

  • Committer: Aaron Bentley
  • Date: 2007-07-17 20:04:13 UTC
  • mto: (1551.19.24 Aaron's mergeable stuff)
  • mto: This revision was merged to the branch mainline in revision 2639.
  • Revision ID: abentley@panoramicfeedback.com-20070717200413-jpganazttxzryrx8
Deprecate RevisionTree.get_weave

Show diffs side-by-side

added added

removed removed

Lines of Context:
609
609
 
610
610
        if self.file_id not in checker.checked_weaves:
611
611
            mutter('check weave {%s}', self.file_id)
612
 
            w = tree.get_weave(self.file_id)
 
612
            w = tree._get_weave(self.file_id)
613
613
            # Not passing a progress bar, because it creates a new
614
614
            # progress, which overwrites the current progress,
615
615
            # and doesn't look nice
616
616
            w.check()
617
617
            checker.checked_weaves[self.file_id] = True
618
618
        else:
619
 
            w = tree.get_weave(self.file_id)
 
619
            w = tree._get_weave(self.file_id)
620
620
 
621
621
        mutter('check version {%s} of {%s}', tree_revision_id, self.file_id)
622
622
        checker.checked_text_cnt += 1