diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-09-21 11:48:30 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-09-21 11:59:03 -0400 |
commit | bb25260f001c741d419f5732da4431a548b0749d (patch) | |
tree | 682f5892f36a3ba65f54b31d10acbf67f2904db1 /mesonbuild/mesonmain.py | |
parent | 751d59d95238e9f2ef12202df992d54650594919 (diff) | |
download | meson-bb25260f001c741d419f5732da4431a548b0749d.zip meson-bb25260f001c741d419f5732da4431a548b0749d.tar.gz meson-bb25260f001c741d419f5732da4431a548b0749d.tar.bz2 |
flake8: Perform suggested whitespace/formatting changes
This only touches newlines, spaces, and (occaisionally) commas. Anything
else is left for another commit.
Diffstat (limited to 'mesonbuild/mesonmain.py')
-rw-r--r-- | mesonbuild/mesonmain.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mesonbuild/mesonmain.py b/mesonbuild/mesonmain.py index 1657ddd..45e6026 100644 --- a/mesonbuild/mesonmain.py +++ b/mesonbuild/mesonmain.py @@ -122,11 +122,11 @@ class MesonApp: if os.path.exists(priv_dir): if not handshake: print('Directory already configured, exiting Meson. Just run your build command\n' - '(e.g. ninja) and Meson will regenerate as necessary. If ninja fails, run ninja\n' - 'reconfigure to force Meson to regenerate.\n' - '\nIf build failures persist, manually wipe your build directory to clear any\n' - 'stored system data.\n' - '\nTo change option values, run meson configure instead.') + '(e.g. ninja) and Meson will regenerate as necessary. If ninja fails, run ninja\n' + 'reconfigure to force Meson to regenerate.\n' + '\nIf build failures persist, manually wipe your build directory to clear any\n' + 'stored system data.\n' + '\nTo change option values, run meson configure instead.') sys.exit(0) else: if handshake: |