From 1fb60d04eb7ee6a42bec0a589896fa22b4a59468 Mon Sep 17 00:00:00 2001 From: Jan Pokorný Date: Tue, 1 Apr 2014 19:19:01 +0200 Subject: filter: reconcile _xslt_template with 017948a MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ...hence all unitests are passing now again Signed-off-by: Jan Pokorný --- filter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/filter.py b/filter.py index ff1e1fe..5926fde 100644 --- a/filter.py +++ b/filter.py @@ -480,7 +480,7 @@ class XMLFilter(Filter, MetaPlugin): parent[parent.index(tag)] = e ret[-1].append(snippet) # in parallel: 2? - for target_tag, index_history in hooks.iteritems(): + for target_tag, (index_history, mix) in hooks.iteritems(): tag = reduce(lambda x, y: x[y], index_history, snippet) l = scheduled_subst.setdefault(target_tag, []) l.append(tag) -- cgit