aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Sinkovsky <msink@permonline.ru>2017-01-10 15:35:02 +0500
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-11 12:33:27 -0500
commit0dd1e338989c4d0517eab8efbfa008e0e3e841a9 (patch)
tree5dc58d1a0f57f7a529541f26f589b368c70674e5
parentab4f7b56cebd4267e09cc6e6bd08a953436555dc (diff)
downloadmeson-0dd1e338989c4d0517eab8efbfa008e0e3e841a9.zip
meson-0dd1e338989c4d0517eab8efbfa008e0e3e841a9.tar.gz
meson-0dd1e338989c4d0517eab8efbfa008e0e3e841a9.tar.bz2
style: [E251] unexpected spaces around keyword / parameter equals
-rwxr-xr-xmanual tests/4 standalone binaries/build_windows_package.py2
-rwxr-xr-xrun_project_tests.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/manual tests/4 standalone binaries/build_windows_package.py b/manual tests/4 standalone binaries/build_windows_package.py
index c361aa0..b30ec4d 100755
--- a/manual tests/4 standalone binaries/build_windows_package.py
+++ b/manual tests/4 standalone binaries/build_windows_package.py
@@ -27,6 +27,6 @@ subprocess.check_call(['python3', r'..\..\meson.py', 'build',
subprocess.check_call(['ninja'], cwd='build')
shutil.copy('myapp.iss', 'build')
subprocess.check_call([r'\Program Files\Inno Setup 5\ISCC.exe', 'myapp.iss'],
- cwd = 'build')
+ cwd='build')
shutil.copy('build/setup.exe', 'myapp 1.0.exe')
shutil.rmtree('build')
diff --git a/run_project_tests.py b/run_project_tests.py
index 0496d4a..1f48be7 100755
--- a/run_project_tests.py
+++ b/run_project_tests.py
@@ -529,7 +529,7 @@ if __name__ == '__main__':
parser.add_argument('extra_args', nargs='*',
help='arguments that are passed directly to Meson (remember to have -- before these).')
parser.add_argument('--backend', default=None, dest='backend',
- choices = backendlist)
+ choices=backendlist)
options = parser.parse_args()
setup_commands(options.backend)