~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Aaron Bentley
  • Date: 2008-10-07 19:07:43 UTC
  • mto: (3363.19.2 fix-iter-changes)
  • mto: This revision was merged to the branch mainline in revision 3777.
  • Revision ID: aaron@aaronbentley.com-20081007190743-w0n16qt57ahg61cw
Start testing merging PreviewTree as OTHER

Show diffs side-by-side

added added

removed removed

Lines of Context:
1690
1690
        try:
1691
1691
            return self._transform._new_executability[trans_id]
1692
1692
        except KeyError:
1693
 
            return self._transform._tree.is_executable(file_id, path)
 
1693
            try:
 
1694
                return self._transform._tree.is_executable(file_id, path)
 
1695
            except OSError, e:
 
1696
                if e.errno == errno.ENOENT:
 
1697
                    return False
 
1698
                raise
1694
1699
 
1695
1700
    def path_content_summary(self, path):
1696
1701
        trans_id = self._path2trans_id(path)