test output fix
authorStefan Behnel <scoder@users.berlios.de>
Thu, 5 Jun 2008 12:34:44 +0000 (14:34 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Thu, 5 Jun 2008 12:34:44 +0000 (14:34 +0200)
runtests.py

index ba98c8c902e2b1ca756e3cc40498161182b52f82..75ab875b912a12fc3b9a2b3095ea70d4a70b88d4 100644 (file)
@@ -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)