~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Martin Pool
  • Date: 2005-07-12 01:30:55 UTC
  • Revision ID: mbp@sourcefrog.net-20050712013055-aafbf9db6df73c34
- fix up breakage of 'bzr log -v' by root_id patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
 
193
193
    if last_revno:
194
194
        if last_revno == 1:
195
 
            this_tree = EmptyTree()
 
195
            this_tree = EmptyTree(branch.get_root_id())
196
196
        else:
197
197
            this_revno = last_revno - 1
198
198
            this_revision_id = branch.revision_history()[this_revno]