~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-17 16:36:40 UTC
  • mfrom: (5035.3.2 no-get-revision-inventory)
  • Revision ID: pqm@pqm.ubuntu.com-20100217163640-cseitbcigg7vptg7
(Jelmer) Remove Repository.get_revision_inventory().

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
    last_path = None
110
110
    revno = 1
111
111
    for revision_id in branch.revision_history():
112
 
        this_inv = branch.repository.get_revision_inventory(revision_id)
 
112
        this_inv = branch.repository.get_inventory(revision_id)
113
113
        if file_id in this_inv:
114
114
            this_ie = this_inv[file_id]
115
115
            this_path = this_inv.id2path(file_id)