aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/mesonlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/mesonlib.py')
-rw-r--r--mesonbuild/mesonlib.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/mesonbuild/mesonlib.py b/mesonbuild/mesonlib.py
index 2298c86..aa7c37c 100644
--- a/mesonbuild/mesonlib.py
+++ b/mesonbuild/mesonlib.py
@@ -24,6 +24,7 @@ from functools import lru_cache, update_wrapper
from itertools import tee, filterfalse
import typing as T
import uuid
+import textwrap
from mesonbuild import mlog
@@ -109,10 +110,12 @@ def check_direntry_issues(direntry_array):
for de in direntry_array:
if is_ascii_string(de):
continue
- mlog.warning('''You are using {!r} which is not a Unicode-compatible '
-locale but you are trying to access a file system entry called {!r} which is
-not pure ASCII. This may cause problems.
-'''.format(e, de), file=sys.stderr)
+ mlog.warning(textwrap.dedent('''
+ You are using {!r} which is not a Unicode-compatible
+ locale but you are trying to access a file system entry called {!r} which is
+ not pure ASCII. This may cause problems.
+ '''.format(e, de)), file=sys.stderr)
+
# Put this in objects that should not get dumped to pickle files
# by accident.