~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Aaron Bentley
  • Date: 2006-11-28 05:43:25 UTC
  • mto: This revision was merged to the branch mainline in revision 2162.
  • Revision ID: aaron.bentley@utoronto.ca-20061128054325-gkhwgmkpg128evxu
Support progress bars in iter_changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1233
1233
def _alter_files(working_tree, target_tree, tt, pb, interesting_ids, backups):
1234
1234
    merge_modified = working_tree.merge_modified()
1235
1235
    iterator = target_tree._iter_changes(working_tree, 
1236
 
                                         specific_file_ids=interesting_ids)
 
1236
                                         specific_file_ids=interesting_ids,
 
1237
                                         pb=pb)
1237
1238
    if target_tree.inventory.root is None:
1238
1239
        skip_root = True
1239
1240
    else: