diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-09-22 21:33:34 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-22 21:33:34 +0300 |
commit | be0aa7fd740d5808975868e32649c464e031f526 (patch) | |
tree | e4bd6488d66a602edb3ba65e97ff12834974edac /mesonbuild/mesonmain.py | |
parent | 2ab4b397a85071fc3c10cfab60373e9ad88e5d0f (diff) | |
parent | 68d4c1e559fef510e257b36d69fd907b16830efd (diff) | |
download | meson-be0aa7fd740d5808975868e32649c464e031f526.zip meson-be0aa7fd740d5808975868e32649c464e031f526.tar.gz meson-be0aa7fd740d5808975868e32649c464e031f526.tar.bz2 |
Merge pull request #2357 from LukeShu/flake8
Bring into compliance with flake8
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: |