/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 gen_changeset.py

  • Committer: John Arbash Meinel
  • Date: 2005-06-28 21:28:29 UTC
  • mto: (0.5.85) (1185.82.1 bzr-w-changeset)
  • mto: This revision was merged to the branch mainline in revision 1738.
  • Revision ID: john@arbash-meinel.com-20050628212829-04a9bc8880a484f1
Adding the commit message for each revision.

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
                self.to_file.write('#        %s\t%s\n' % (
224
224
                    parent.revision_id,
225
225
                    parent.revision_sha1))
 
226
            self.to_file.write('#    message:\n')
 
227
            for line in rev.message.split('\n'):
 
228
                self.to_file.write('#        %s\n' % line)
226
229
 
227
230
 
228
231