~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/diff.py

  • Committer: Martin Pool
  • Date: 2005-06-10 06:22:11 UTC
  • Revision ID: mbp@sourcefrog.net-20050610062211-3540a4591114f483
- fix redirection of messages to file in diff
  (from Johan Rydberg)

Show diffs side-by-side

added added

removed removed

Lines of Context:
209
209
                          specific_files=specific_files)
210
210
 
211
211
    for path, file_id, kind in delta.removed:
212
 
        print '*** removed %s %r' % (kind, path)
 
212
        print >>to_file, '*** removed %s %r' % (kind, path)
213
213
        if kind == 'file':
214
214
            diff_file(old_label + path,
215
215
                      old_tree.get_file(file_id).readlines(),
218
218
                      to_file)
219
219
 
220
220
    for path, file_id, kind in delta.added:
221
 
        print '*** added %s %r' % (kind, path)
 
221
        print >>to_file, '*** added %s %r' % (kind, path)
222
222
        if kind == 'file':
223
223
            diff_file(DEVNULL,
224
224
                      [],
227
227
                      to_file)
228
228
 
229
229
    for old_path, new_path, file_id, kind, text_modified in delta.renamed:
230
 
        print '*** renamed %s %r => %r' % (kind, old_path, new_path)
 
230
        print >>to_file, '*** renamed %s %r => %r' % (kind, old_path, new_path)
231
231
        if text_modified:
232
232
            diff_file(old_label + old_path,
233
233
                      old_tree.get_file(file_id).readlines(),
236
236
                      to_file)
237
237
 
238
238
    for path, file_id, kind in delta.modified:
239
 
        print '*** modified %s %r' % (kind, path)
 
239
        print >>to_file, '*** modified %s %r' % (kind, path)
240
240
        if kind == 'file':
241
241
            diff_file(old_label + path,
242
242
                      old_tree.get_file(file_id).readlines(),