~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-12 03:21:39 UTC
  • mfrom: (1558.12.7 revert-missing)
  • Revision ID: pqm@pqm.ubuntu.com-20060412032139-5508773d6a1cd4ae
Remove debug path printing

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