/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/workingtree.py

  • Committer: Gordon Tyler
  • Date: 2009-11-17 02:27:12 UTC
  • mfrom: (4800 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4802.
  • Revision ID: gordon@doxxx.net-20091117022712-4nrb2c0h4mzfkvx2
Merged from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
636
636
 
637
637
    def _is_executable_from_path_and_stat_from_basis(self, path, stat_result):
638
638
        file_id = self.path2id(path)
 
639
        if file_id is None:
 
640
            # For unversioned files on win32, we just assume they are not
 
641
            # executable
 
642
            return False
639
643
        return self._inventory[file_id].executable
640
644
 
641
645
    def _is_executable_from_path_and_stat_from_stat(self, path, stat_result):