mesonlib: Use textwrap.dedent

This is mostly just to help folding editors like vim, which get confused
by the non-indented code. It also helps readability, IMHO.
pull/6736/head
Dylan Baker 5 years ago
parent 7476961790
commit f79ac4cefa
  1. 11
      mesonbuild/mesonlib.py

@ -24,6 +24,7 @@ from functools import lru_cache, update_wrapper
from itertools import tee, filterfalse from itertools import tee, filterfalse
import typing as T import typing as T
import uuid import uuid
import textwrap
from mesonbuild import mlog from mesonbuild import mlog
@ -109,10 +110,12 @@ def check_direntry_issues(direntry_array):
for de in direntry_array: for de in direntry_array:
if is_ascii_string(de): if is_ascii_string(de):
continue continue
mlog.warning('''You are using {!r} which is not a Unicode-compatible ' mlog.warning(textwrap.dedent('''
locale but you are trying to access a file system entry called {!r} which is You are using {!r} which is not a Unicode-compatible
not pure ASCII. This may cause problems. locale but you are trying to access a file system entry called {!r} which is
'''.format(e, de), file=sys.stderr) 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 # Put this in objects that should not get dumped to pickle files
# by accident. # by accident.

Loading…
Cancel
Save