988
988
def find_interesting(working_tree, target_tree, filenames):
989
989
"""Find the ids corresponding to specified filenames."""
994
995
for tree_path in filenames:
997
998
file_id = tree.inventory.path2id(tree_path)
999
1000
interesting_ids.add(file_id)
1002
1003
raise NotVersionedError(path=tree_path)