diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-31 20:11:54 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-31 20:11:54 +0300 |
commit | d99717d9d226df751efcc65b82aa0c052455b4d8 (patch) | |
tree | 2bbd24bb45ffcb7b9d2d31274078fee365ffce79 /meson.py | |
parent | 1967b64180b6bf1a88c81cf15529494f72fe4c57 (diff) | |
download | meson-d99717d9d226df751efcc65b82aa0c052455b4d8.zip meson-d99717d9d226df751efcc65b82aa0c052455b4d8.tar.gz meson-d99717d9d226df751efcc65b82aa0c052455b4d8.tar.bz2 |
Some cleanups.
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) |