From efb4d7920647e53708ecd6e952eacf92951ee53c Mon Sep 17 00:00:00 2001 From: Thierry Parmentelat Date: Wed, 27 May 2015 15:06:59 +0200 Subject: [PATCH] fix python3/www format --- module-tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module-tools.py b/module-tools.py index 11acc1e0..e9f30965 100755 --- a/module-tools.py +++ b/module-tools.py @@ -958,8 +958,8 @@ n: move to next file""".format(**locals())) self.html_store_title("Diffs in module {} ({}) : {} chars"\ .format(thename, self.last_tag(spec_dict), len(diff_output))) - self.html_store_raw('

< (left) {}

'"{:<16} {}".format(tag_name)) - self.html_store_raw('

> (right) {}

'"{:<16} {}".format(thename)) + self.html_store_raw('

< (left) {}

'.format(tag_name)) + self.html_store_raw('

> (right) {}

'.format(thename)) self.html_store_pre(diff_output) elif not self.options.www: print('x'*30, 'module', thename) -- 2.43.0