/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: Martin Pool
  • Date: 2007-04-01 06:19:16 UTC
  • mfrom: (2323.5.20 0.15-integration)
  • mto: This revision was merged to the branch mainline in revision 2390.
  • Revision ID: mbp@sourcefrog.net-20070401061916-plpgsxdf8g7gll9o
Merge 0.15 final release back to trunk, including: recommend upgrades of old workingtrees, handle multiple http redirections, some dirstate fixes, 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1601
1601
            mode = stat_value.st_mode
1602
1602
            kind = osutils.file_kind_from_stat_mode(mode)
1603
1603
            if not supports_executable():
1604
 
                executable = entry is not None and entry.executable
 
1604
                executable = entry.executable
1605
1605
            else:
1606
1606
                executable = bool(stat.S_ISREG(mode) and stat.S_IEXEC & mode)
1607
1607
        return kind, executable, stat_value