From 1432f3a82c657040a0e5155455907b30e5e58983 Mon Sep 17 00:00:00 2001 From: Roman Donchenko Date: Mon, 22 Jul 2013 12:48:43 +0400 Subject: [PATCH] Fix xls-report.py not working with more than one comparison. --- modules/ts/misc/xls-report.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/ts/misc/xls-report.py b/modules/ts/misc/xls-report.py index d5db73d482..1ca3fada7a 100755 --- a/modules/ts/misc/xls-report.py +++ b/modules/ts/misc/xls-report.py @@ -291,6 +291,7 @@ def main(): sheet.write_merge(row, row + 1, col, col, caption, header_style) else: sheet.write(row, col, caption, header_style) + col += 1 row += 2 if args.show_times_per_pixel else 1