diff --git a/compiler/ksp_compiler.py b/compiler/ksp_compiler.py index 6fc4fa6..ac11898 100644 --- a/compiler/ksp_compiler.py +++ b/compiler/ksp_compiler.py @@ -248,7 +248,7 @@ def get_filename(self): filename = property(get_filename) def get_locations_string(self): - return '\n'.join(('%s%s: %d' % (' ' * (i * 4), filename or '
', lineno)) \ + return '\n'.join(('%s%s, line %d' % (' ' * (i * 4), filename or '
', lineno)) \ for (i, (filename, lineno)) in enumerate(reversed(self.locations))) def copy(self, new_command = None, add_location = None):