~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to scriptlib.py

  • Committer: Aaron Bentley
  • Date: 2005-05-13 20:50:23 UTC
  • Revision ID: abentley@troll-20050513205023-8978bf6c550ec4ad
fixed arguments to diffing

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    old_tree = cur_branch.basis_tree()
34
34
    new_tree = cur_branch.working_tree()
35
35
    for file_state, fid, old_name, new_name, kind in \
36
 
        bzrlib.compare_trees(old_tree, new_tree):
 
36
        bzrlib.compare_trees(old_tree, new_tree, want_unchanged=False):
37
37
        if file_state not in ('I', '.'):
38
38
            return False
39
39
    return True