~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Aaron Bentley
  • Date: 2006-08-06 21:24:22 UTC
  • mto: (1731.1.36 nested-trees)
  • mto: This revision was merged to the branch mainline in revision 1910.
  • Revision ID: aaron.bentley@utoronto.ca-20060806212422-850ea3d25256bbc1
Remove include_root parameter from list_files

Show diffs side-by-side

added added

removed removed

Lines of Context:
216
216
        assert self._inventory[file_id].kind == "directory"
217
217
        return "directory"
218
218
 
219
 
    def list_files(self, include_root=True):
 
219
    def list_files(self):
220
220
        return iter([])
221
221
    
222
222
    def __contains__(self, file_id):