999
999
def find_interesting(working_tree, target_tree, filenames):
1000
1000
"""Find the ids corresponding to specified filenames."""
1005
1006
for tree_path in filenames:
1008
1009
file_id = tree.inventory.path2id(tree_path)
1010
1011
interesting_ids.add(file_id)
1013
1014
raise NotVersionedError(path=tree_path)