~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to bzrtools.py

  • Committer: Aaron Bentley
  • Date: 2006-08-07 01:20:08 UTC
  • mto: This revision was merged to the branch mainline in revision 425.
  • Revision ID: aaron.bentley@utoronto.ca-20060807012008-0d1b132f9741c555
Update to match 0.9 api

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    for path, file_class, kind, file_id, entry in new_tree.list_files():
66
66
        if file_class in ('?', 'I'):
67
67
            non_source.append(path)
68
 
    delta = compare_trees(old_tree, new_tree, want_unchanged=False)
 
68
    delta = new_tree.changes_from(old_tree, want_unchanged=False)
69
69
    return not delta.has_changed(), non_source
70
70
 
71
71
def set_push_data(tree, location):