From ef9a49d46462434c867ea1fb1991abe4201dbef2 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 18 Sep 2017 23:27:15 -0400 Subject: [PATCH] fix a typo in the UTF-8 warning message --- meson.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.py b/meson.py index d1b629d6f..57cc6dc24 100755 --- a/meson.py +++ b/meson.py @@ -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)