~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Aaron Bentley
  • Date: 2007-02-07 03:09:58 UTC
  • mfrom: (2268 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2269.
  • Revision ID: aaron.bentley@utoronto.ca-20070207030958-fx6ykp7rg7zma6xu
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

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