From: Stefan Behnel Date: Thu, 5 Jun 2008 12:34:44 +0000 (+0200) Subject: test output fix X-Git-Tag: 0.9.8rc1~11^2~10^2~6^2~13 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=85c0e72b11f825d5b610539d6d90e5b01b1dd7c0;p=cython.git test output fix --- 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)