~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tree.py

  • Committer: Aaron Bentley
  • Date: 2006-09-28 22:56:04 UTC
  • mto: (1731.2.8 nested-trees)
  • mto: This revision was merged to the branch mainline in revision 2078.
  • Revision ID: aaron.bentley@utoronto.ca-20060928225604-415f1396ea1d2b97
Fix EmptyTree's default include_root

Show diffs side-by-side

added added

removed removed

Lines of Context:
236
236
        assert self._inventory[file_id].kind == "directory"
237
237
        return "directory"
238
238
 
239
 
    def list_files(self, include_root=True):
 
239
    def list_files(self, include_root=False):
240
240
        return iter([])
241
241
    
242
242
    def __contains__(self, file_id):