~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

Merge trunk

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,))