/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: Canonical.com Patch Queue Manager
  • Date: 2008-03-13 00:40:30 UTC
  • mfrom: (3257.2.1 foo)
  • Revision ID: pqm@pqm.ubuntu.com-20080313004030-mff9aq1jfg13n0qi
(Adeodato Simo) Add a space after "revision-id:" in log output.

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