/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: Alexander Belchenko
  • Date: 2007-04-14 12:19:35 UTC
  • mfrom: (2418 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2422.
  • Revision ID: bialix@ukr.net-20070414121935-s673tupvwywawpwv
merge bzr.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.executable
 
1604
                executable = entry is not None and 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