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

  • Committer: Ian Clatworthy
  • Date: 2008-12-18 06:41:29 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-20081218064129-ifzxuk0lbftgf67v
add and use supports_content_filtering API

Show diffs side-by-side

added added

removed removed

Lines of Context:
257
257
        local_path = self.bzrdir.get_workingtree_transport(None
258
258
            ).local_abspath('dirstate')
259
259
        self._dirstate = dirstate.DirState.on_file(local_path,
260
 
            lambda path, file_id: self._content_filter_stack(path, file_id))
 
260
            self._content_filter_stack_provider())
261
261
        return self._dirstate
262
262
 
263
263
    def filter_unversioned_files(self, paths):