~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to bzrtools.py

  • Committer: Robert Collins
  • Date: 2005-10-16 00:25:31 UTC
  • mfrom: (147.2.14)
  • mto: (147.4.12) (364.1.3 bzrtools)
  • mto: This revision was merged to the branch mainline in revision 324.
  • Revision ID: robertc@lifelesslap.robertcollins.net-20051016002531-bc0d149f1ee42823
merge from aaron, and update test imports to import successfully.

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    old_tree = cur_branch.basis_tree()
57
57
    new_tree = cur_branch.working_tree()
58
58
    non_source = []
59
 
    for path, file_class, kind, file_id in new_tree.list_files():
 
59
    for path, file_class, kind, file_id, entry in new_tree.list_files():
60
60
        if file_class in ('?', 'I'):
61
61
            non_source.append(path)
62
62
    delta = compare_trees(old_tree, new_tree, want_unchanged=False)