diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-09-21 19:55:00 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-21 19:55:00 +0300 |
commit | b6821dc590906b540c51417261235d0f1ea1c08c (patch) | |
tree | 3b2919709283c87f94fd42b7b167573e4dde12de /meson.py | |
parent | 2cbd917cf63cc1b031135d178d0f40abd4ee5675 (diff) | |
parent | e7d5b9dd8e006f533fc6480e8e6fa3a78164bdd1 (diff) | |
download | meson-b6821dc590906b540c51417261235d0f1ea1c08c.zip meson-b6821dc590906b540c51417261235d0f1ea1c08c.tar.gz meson-b6821dc590906b540c51417261235d0f1ea1c08c.tar.bz2 |
Merge pull request #2352 from LukeShu/minor-fixups
Minor fixups
Diffstat (limited to 'meson.py')
-rwxr-xr-x | meson.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ def main(): # encoding, so we can just warn about it. e = locale.getpreferredencoding() if e.upper() != 'UTF-8' and not mesonlib.is_windows(): - print('Warning: You are using {!r} which is not a a Unicode-compatible ' + print('Warning: You are using {!r} which is not a Unicode-compatible ' 'locale.'.format(e), file=sys.stderr) print('You might see errors if you use UTF-8 strings as ' 'filenames, as strings, or as file contents.', file=sys.stderr) |