Skip to content

Commit

Permalink
fix a typo in the UTF-8 warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeShu committed Sep 20, 2017
1 parent 96e24a5 commit ef9a49d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ef9a49d

Please sign in to comment.