/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-19 23:49:57 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-20050619234957-4e9542e7d2f3d832
Now adding the patch information to the ChangesetInfo

Show diffs side-by-side

added added

removed removed

Lines of Context:
271
271
        _write_all('file')
272
272
        _write_all('directory')
273
273
 
 
274
        # All files must be traceable back to the ROOT_ID
 
275
        # Since we may not have modified some of the parent
 
276
        # directories, add a new set of fields for "parent ids"
274
277
        first = True
275
278
        while len(need_ids) > 0:
276
279
            file_id = need_ids.pop()
278
281
                continue
279
282
            seen_ids.add(file_id)
280
283
            if first:
281
 
                self.to_file.write('# parent ids: ')
 
284
                self.to_file.write('# parent ids:\n')
282
285
                first = False
283
 
            else:
284
 
                to_file.write('#             ')
 
286
            to_file.write('#    ')
285
287
            _write_entry(file_id)
286
288
 
287
289