~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree_4.py

  • Committer: Ian Clatworthy
  • Date: 2008-04-17 14:10:33 UTC
  • mto: (4171.1.1 ianc-integration)
  • mto: This revision was merged to the branch mainline in revision 4173.
  • Revision ID: ian.clatworthy@canonical.com-20080417141033-0fnc7oe07535rw90
make content filter lookup a tree responsibility

Show diffs side-by-side

added added

removed removed

Lines of Context:
267
267
            return self._dirstate
268
268
        local_path = self.bzrdir.get_workingtree_transport(None
269
269
            ).local_abspath('dirstate')
270
 
        self._dirstate = dirstate.DirState.on_file(local_path)
 
270
        self._dirstate = dirstate.DirState.on_file(local_path,
 
271
            lambda(p): self._content_filter_stack(p))
271
272
        return self._dirstate
272
273
 
273
274
    def filter_unversioned_files(self, paths):