From d2ab81e17aa83a003c92735e372b72d903cb0c5d Mon Sep 17 00:00:00 2001 From: grahambenharper Date: Mon, 17 Feb 2020 12:22:44 -0700 Subject: [PATCH] Fix use of array concatenation --- contrib/utilities/checkdoxygen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/utilities/checkdoxygen.py b/contrib/utilities/checkdoxygen.py index 4a43942d97..4de75128e2 100755 --- a/contrib/utilities/checkdoxygen.py +++ b/contrib/utilities/checkdoxygen.py @@ -119,7 +119,7 @@ if 'intro.dox' in args[0]: fstep.close() fres = open(resultsname) - lines.append(fres.readlines()) + lines += fres.readlines() fres.close() # check the file group -- 2.39.5