~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Aaron Bentley
  • Date: 2006-06-15 03:10:51 UTC
  • mto: This revision was merged to the branch mainline in revision 1771.
  • Revision ID: aaron.bentley@utoronto.ca-20060615031051-94c53f386edc1f8c
Ignore lines that start with '#' in patch parser

Show diffs side-by-side

added added

removed removed

Lines of Context:
232
232
    for index, rev_id in cut_revs:
233
233
        rev_nos[rev_id] = index
234
234
 
235
 
    revisions = branch.repository.get_revisions([r for s, r, m, e in
236
 
                                                 merge_sorted_revisions])
237
 
 
238
235
    # now we just print all the revisions
239
 
    for ((sequence, rev_id, merge_depth, end_of_merge), rev) in \
240
 
        zip(merge_sorted_revisions, revisions):
 
236
    for sequence, rev_id, merge_depth, end_of_merge in merge_sorted_revisions:
 
237
        rev = branch.repository.get_revision(rev_id)
241
238
 
242
239
        if searchRE:
243
240
            if not searchRE.search(rev.message):