From 2ac966df7a35d30c09162cc82b62bc3c9e0f74dd Mon Sep 17 00:00:00 2001 From: albert-github Date: Thu, 7 Jan 2021 19:52:31 +0100 Subject: Typeerror when running tests Some tests get (#8313): ``` File "/home/runner/work/doxygen/doxygen/testing/runtests.py", line 55, in clean_header rtnmsg+=0 TypeError: can only concatenate str (not "int") to str ``` most likely caused by the fact that `more` has error lines and that here not `0` (zero) but `o` should be used for the concatenation. --- testing/runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/runtests.py b/testing/runtests.py index fde252d..f981c55 100755 --- a/testing/runtests.py +++ b/testing/runtests.py @@ -52,7 +52,7 @@ def clean_header(errmsg): if (cnt > 0): cnt-=1 else: - rtnmsg+=0 + rtnmsg+=o return rtnmsg class Tester: -- cgit v0.12