~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Parth Malwankar
  • Date: 2010-05-29 15:40:14 UTC
  • mto: This revision was merged to the branch mainline in revision 5281.
  • Revision ID: parth.malwankar@gmail.com-20100529154014-faqc89yv2jl41q1j
cosmetic fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2320
2320
                precomputed_delta = []
2321
2321
            else:
2322
2322
                precomputed_delta = None
2323
 
 
2324
2323
            # Check if tree inventory has content. If so, we populate
2325
2324
            # existing_files with the directory content. If there are no
2326
2325
            # entries we skip populating existing_files as its not used.
2331
2330
                for dir, files in wt.walkdirs():
2332
2331
                    existing_files.update(f[0] for f in files)
2333
2332
            for num, (tree_path, entry) in \
2334
 
                    enumerate(tree.inventory.iter_entries_by_dir()):
 
2333
                enumerate(tree.inventory.iter_entries_by_dir()):
2335
2334
                pb.update("Building tree", num - len(deferred_contents), total)
2336
2335
                if entry.parent_id is None:
2337
2336
                    continue