~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Robert Collins
  • Date: 2007-02-02 09:17:23 UTC
  • mfrom: (2249.4.2 tip.info)
  • mto: This revision was merged to the branch mainline in revision 2257.
  • Revision ID: robertc@robertcollins.net-20070202091723-xtak1zzhe2ylwksa
(robertc) Merge new Branch.last_revision_info method.

Show diffs side-by-side

added added

removed removed

Lines of Context:
296
296
    elif direction != 'reverse':
297
297
        raise ValueError('invalid direction %r' % direction)
298
298
 
299
 
    revision_history = branch.revision_history()
300
 
 
301
299
    for sequence, rev_id, merge_depth, revno, end_of_merge in merge_sorted_revisions:
302
300
        yield rev_id, '.'.join(map(str, revno)), merge_depth
303
301