diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2016-12-31 20:05:18 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-01 12:02:05 -0500 |
commit | 2a835c2c10c3ae7c7f51db3bfe5af7d5eee33cb0 (patch) | |
tree | 3e2b0e0c6b7552d58804f6ee49a2fe42c04b0b53 | |
parent | ef608f217dbd0cb7f263162c5a067d6cde8aac13 (diff) | |
download | meson-2a835c2c10c3ae7c7f51db3bfe5af7d5eee33cb0.zip meson-2a835c2c10c3ae7c7f51db3bfe5af7d5eee33cb0.tar.gz meson-2a835c2c10c3ae7c7f51db3bfe5af7d5eee33cb0.tar.bz2 |
style: fix E221 violations
E221: multiple spaces before operator
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
-rw-r--r-- | mesonbuild/backend/ninjabackend.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index fe90478..fb6d2db 100644 --- a/mesonbuild/backend/ninjabackend.py +++ b/mesonbuild/backend/ninjabackend.py @@ -763,11 +763,11 @@ int dummy; outfile.write(' restat = 1\n\n') outfile.write('rule REGENERATE_BUILD\n') c = (quote_char + ninja_quote(sys.executable) + quote_char, - quote_char + ninja_quote(self.environment.get_build_command()) + quote_char, + quote_char + ninja_quote(self.environment.get_build_command()) + quote_char, '--internal', 'regenerate', - quote_char + ninja_quote(self.environment.get_source_dir()) + quote_char, - quote_char + ninja_quote(self.environment.get_build_dir()) + quote_char) + quote_char + ninja_quote(self.environment.get_source_dir()) + quote_char, + quote_char + ninja_quote(self.environment.get_build_dir()) + quote_char) outfile.write(" command = %s %s %s %s %s %s --backend ninja\n" % c) outfile.write(' description = Regenerating build files\n') outfile.write(' generator = 1\n\n') |