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

  • Committer: Aaron Bentley
  • Date: 2008-06-25 21:33:39 UTC
  • mto: (3363.10.9 preview-post)
  • mto: This revision was merged to the branch mainline in revision 3663.
  • Revision ID: aaron@aaronbentley.com-20080625213339-13p5bl8w0465joz6
Fix listing files

Show diffs side-by-side

added added

removed removed

Lines of Context:
1599
1599
        for path, entry in self.iter_entries_by_dir():
1600
1600
            if entry.name == '' and not include_root:
1601
1601
                continue
1602
 
            yield path, 'V', entry, entry.kind, entry.file_id, entry
 
1602
            yield path, 'V', entry.kind, entry.file_id, entry
1603
1603
 
1604
1604
    def kind(self, file_id):
1605
1605
        trans_id = self._transform.trans_id_file_id(file_id)
1704
1704
        name = self._transform._limbo_name(trans_id)
1705
1705
        return os.readlink(name)
1706
1706
 
1707
 
    def list_files(self, include_root=False):
1708
 
        return self._transform._tree.list_files(include_root)
1709
 
 
1710
1707
    def walkdirs(self, prefix=""):
1711
1708
        return self._transform._tree.walkdirs(prefix)
1712
1709