/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: Canonical.com Patch Queue Manager
  • Date: 2007-04-01 06:48:38 UTC
  • mfrom: (2389.1.1 0.15-to-trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20070401064838-34903c7b0d0c8007
merge 0.15 back to dev

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