~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-31 03:12:31 UTC
  • mfrom: (2661.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20070731031231-iqrudv126086qgsa
(robertc) Ancient unused ``Repository.text_store`` attribute has been removed. (Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1950
1950
                ie.revision = previous_ie.revision
1951
1951
                return
1952
1952
        if ie.has_text():
1953
 
            text = self.branch.repository.text_store.get(ie.text_id)
 
1953
            text = self.branch.repository.weave_store.get(ie.text_id)
1954
1954
            file_lines = text.readlines()
1955
1955
            assert sha_strings(file_lines) == ie.text_sha1
1956
1956
            assert sum(map(len, file_lines)) == ie.text_size