From ff4f97e3686049b689455019519935ebd0244408 Mon Sep 17 00:00:00 2001 From: Gerald Britton Date: Mon, 9 Mar 2009 13:38:50 +0000 Subject: [PATCH] fix write method in html.py: pass output method in recusive call svn: r12269 --- src/plugins/webreport/html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/webreport/html.py b/src/plugins/webreport/html.py index 765815dac..47366ef18 100644 --- a/src/plugins/webreport/html.py +++ b/src/plugins/webreport/html.py @@ -112,7 +112,7 @@ class Html(list): else: for item in self[:]: if isinstance(item, Html): - item.write(tabs=tabs) + item.write(method=method, tabs=tabs) else: method('%s%s' % (tabs, item)) #