/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-04-23 05:12:12 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-20080423051212-qmlwrnkd2yxjjaci
incorporate jameinel's review feedback

Show diffs side-by-side

added added

removed removed

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