~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Martin Pool
  • Date: 2005-09-12 09:50:44 UTC
  • Revision ID: mbp@sourcefrog.net-20050912095044-6acfdb5611729987
- no tests in bzrlib.fetch anymore

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_id in rev.parent_ids:
314
 
                print >>to_file, 'parent:', parent_id
 
313
            for parent in rev.parents:
 
314
                print >>to_file, 'parent:', parent.revision_id
315
315
            
316
316
        print >>to_file,  'committer:', rev.committer
317
317