# HG changeset patch # User aflett # Date 1207330193 0 # Node ID c0a321bceb449383d851471834c553236695fd01 # Parent 4d2afb73d51bcacf8bb9000f06705b37b0dae27e fix totally embarassing typo - ctxt not ctx diff --git a/genshi/template/directives.py b/genshi/template/directives.py --- a/genshi/template/directives.py +++ b/genshi/template/directives.py @@ -457,10 +457,10 @@ attach = classmethod(attach) def __call__(self, stream, directives, ctxt, **vars): - if ctx._match_set is None: + if ctxt._match_set is None: # lazily create MatchSet so that it doesn't burden the # _match filter when there are no py:matches defined. - ctx._match_set = MatchSet() + ctxt._match_set = MatchSet() ctxt._match_set.add((self.path.test(ignore_context=True), self.path, list(stream), self.hints, self.namespaces, directives))