From 5b6f3abac2464158a8a0c7027bd0f7aa61993a95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Loriot?= Date: Wed, 4 Aug 2021 20:58:53 +0200 Subject: [PATCH] fix iteration up to the end --- Documentation/doc/scripts/testsuite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/doc/scripts/testsuite.py b/Documentation/doc/scripts/testsuite.py index 4e9e7393552..f303a6e3c98 100755 --- a/Documentation/doc/scripts/testsuite.py +++ b/Documentation/doc/scripts/testsuite.py @@ -150,7 +150,7 @@ body {color: black; background-color: #C0C0D0; font-family: sans-serif;} for index in range(0, len(results1)): result = [('./build_logs', './build_logs', (0,1))] results_master.extend(result) - for index in range(0, len(results1)-1): + for index in range(0, len(results1)): status='class="package-good"' no_errors = True no_warn = True