~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Robert Collins
  • Date: 2005-09-30 02:54:51 UTC
  • mfrom: (1395)
  • mto: This revision was merged to the branch mainline in revision 1397.
  • Revision ID: robertc@robertcollins.net-20050930025451-47b9e412202be44b
symlink and weaves, whaddya know

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