/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Robert Collins
  • Date: 2006-04-12 05:35:32 UTC
  • mfrom: (1653 +trunk)
  • mto: This revision was merged to the branch mainline in revision 1654.
  • Revision ID: robertc@robertcollins.net-20060412053532-74cf4362ebd83f29
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
981
981
    else:
982
982
        interesting_ids = set()
983
983
        for tree_path in filenames:
 
984
            not_found = True
984
985
            for tree in (working_tree, target_tree):
985
 
                not_found = True
986
986
                file_id = tree.inventory.path2id(tree_path)
987
987
                if file_id is not None:
988
988
                    interesting_ids.add(file_id)
989
989
                    not_found = False
990
 
                if not_found:
991
 
                    raise NotVersionedError(path=tree_path)
 
990
            if not_found:
 
991
                raise NotVersionedError(path=tree_path)
992
992
    return interesting_ids
993
993
 
994
994