~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Ian Clatworthy
  • Date: 2008-07-23 15:24: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-20080723152429-4d6i4g477mdhnkv7
expand filter context to support interesting stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
2095
2095
                ContentFilterContext,
2096
2096
                filtered_output_bytes,
2097
2097
                )
2098
 
            filters = tree._content_filter_stack(relpath)
 
2098
            filters = rev_tree._content_filter_stack(relpath)
2099
2099
            content = filtered_output_bytes([content], filters,
2100
 
                ContentFilterContext(relpath))
 
2100
                ContentFilterContext(relpath, rev_tree))
2101
2101
            self.outf.writelines(content)
2102
2102
        else:
2103
2103
            self.outf.write(content)