diff options
Diffstat (limited to 'meson.py')
-rwxr-xr-x | meson.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -181,7 +181,7 @@ if __name__ == '__main__': except Exception as e: if isinstance(e, MesonException): if hasattr(e, 'file') and hasattr(e, 'lineno') and hasattr(e, 'colno'): - mlog.log(mlog.red('\nMeson encountered an error in %s:%d,%d:' % (e.file, e.lineno, e.colno))) + mlog.log(mlog.red('\nMeson encountered an error in file %s, line %d, column %d:' % (e.file, e.lineno, e.colno))) else: mlog.log(mlog.red('\nMeson encountered an error:')) mlog.log(e) |