From: Thierry Parmentelat Date: Wed, 27 May 2015 13:06:59 +0000 (+0200) Subject: fix python3/www format X-Git-Tag: 5.3.9~34 X-Git-Url: http://git.onelab.eu/?p=build.git;a=commitdiff_plain;h=efb4d7920647e53708ecd6e952eacf92951ee53c fix python3/www format --- 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)