~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Aaron Bentley
  • Date: 2005-09-29 21:07:17 UTC
  • mfrom: (1393.1.6)
  • mto: (1185.25.1)
  • mto: This revision was merged to the branch mainline in revision 1419.
  • Revision ID: abentley@panoramicfeedback.com-20050929210717-cd73981590f17017
Merged the weave changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
310
310
        if self.show_ids:
311
311
            print >>to_file,  'revision-id:', rev.revision_id
312
312
 
313
 
            for parent in rev.parents:
314
 
                print >>to_file, 'parent:', parent.revision_id
 
313
            for parent_id in rev.parent_ids:
 
314
                print >>to_file, 'parent:', parent_id
315
315
            
316
316
        print >>to_file,  'committer:', rev.committer
317
317