/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: John Arbash Meinel
  • Date: 2008-03-14 16:23:28 UTC
  • mfrom: (3276 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3279.
  • Revision ID: john@arbash-meinel.com-20080314162328-9uc5ut91w0at3otd
[merge] bzr.dev 3276

Show diffs side-by-side

added added

removed removed

Lines of Context:
660
660
        if revision.tags:
661
661
            to_file.write(indent + 'tags: %s\n' % (', '.join(revision.tags)))
662
662
        if self.show_ids:
663
 
            to_file.write(indent + 'revision-id:' + revision.rev.revision_id)
 
663
            to_file.write(indent + 'revision-id: ' + revision.rev.revision_id)
664
664
            to_file.write('\n')
665
665
            for parent_id in revision.rev.parent_ids:
666
666
                to_file.write(indent + 'parent: %s\n' % (parent_id,))