/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 breezy/tree.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2020-02-06 02:46:42 UTC
  • mfrom: (7476.3.1 stack-no-file-id)
  • Revision ID: breezy.the.bot@gmail.com-20200206024642-d5oixv6h1cergj5s
Disable file ids for content filter stack.

Merged from https://code.launchpad.net/~jelmer/brz/stack-no-file-id/+merge/378633

Show diffs side-by-side

added added

removed removed

Lines of Context:
713
713
        :return: None if content filtering is not supported by this tree.
714
714
        """
715
715
        if self.supports_content_filtering():
716
 
            return lambda path, file_id: \
717
 
                self._content_filter_stack(path)
 
716
            return self._content_filter_stack
718
717
        else:
719
718
            return None
720
719