From 85c0e72b11f825d5b610539d6d90e5b01b1dd7c0 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Thu, 5 Jun 2008 14:34:44 +0200 Subject: [PATCH] test output fix --- runtests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtests.py b/runtests.py index ba98c8c9..75ab875b 100644 --- a/runtests.py +++ b/runtests.py @@ -33,7 +33,7 @@ class ErrorWriter(object): (not is_warning and collect_errors): result.append( (int(line), int(column), message.strip()) ) result.sort() - return [ "%d:%d:%s" % values for values in result ] + return [ "%d:%d: %s" % values for values in result ] def geterrors(self): return self._collect(True, False) -- 2.26.2