/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: Andrew Bennetts
  • Date: 2009-11-19 06:28:13 UTC
  • mfrom: (4811 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4812.
  • Revision ID: andrew.bennetts@canonical.com-20091119062813-t6sd6gwbot8nfyze
MergeĀ lp:bzr.

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):