~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/log.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-01-14 01:40:02 UTC
  • mfrom: (3177.1.1 ianc-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20080114014002-pz5tya37urp1n3fk
Fix typos of Firefox and OpenOffice.org in docs (Matt Nordhoff)

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