aboutsummaryrefslogtreecommitdiff
path: root/meson.py
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-09-18 23:27:15 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-09-20 14:02:57 -0400
commitef9a49d46462434c867ea1fb1991abe4201dbef2 (patch)
tree327fc6adaff7c751be1becd0625d77005e1c6453 /meson.py
parent96e24a50f91df198f6880ad2f76dd8f010b7f51f (diff)
downloadmeson-ef9a49d46462434c867ea1fb1991abe4201dbef2.zip
meson-ef9a49d46462434c867ea1fb1991abe4201dbef2.tar.gz
meson-ef9a49d46462434c867ea1fb1991abe4201dbef2.tar.bz2
fix a typo in the UTF-8 warning message
Diffstat (limited to 'meson.py')
-rwxr-xr-xmeson.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.py b/meson.py
index d1b629d..57cc6dc 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)