aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/scripts/commandrunner.py
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-12-31 20:07:53 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-01 12:02:05 -0500
commit5693758e4650150d2bf9bcda1baf18334ad26e01 (patch)
treebbcd6efb04a8687037632734ddb263061d961685 /mesonbuild/scripts/commandrunner.py
parent2a835c2c10c3ae7c7f51db3bfe5af7d5eee33cb0 (diff)
downloadmeson-5693758e4650150d2bf9bcda1baf18334ad26e01.zip
meson-5693758e4650150d2bf9bcda1baf18334ad26e01.tar.gz
meson-5693758e4650150d2bf9bcda1baf18334ad26e01.tar.bz2
style: fix E231 violations
E231: missing whitespace after ',' Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'mesonbuild/scripts/commandrunner.py')
-rw-r--r--mesonbuild/scripts/commandrunner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/commandrunner.py b/mesonbuild/scripts/commandrunner.py
index 695301b..30a7da2 100644
--- a/mesonbuild/scripts/commandrunner.py
+++ b/mesonbuild/scripts/commandrunner.py
@@ -35,7 +35,7 @@ def run_command(source_dir, build_dir, subdir, command, arguments):
fullpath = os.path.join(source_dir, subdir, command)
command_array = [fullpath] + arguments
try:
- return subprocess.Popen(command_array,env=child_env, cwd=cwd)
+ return subprocess.Popen(command_array, env=child_env, cwd=cwd)
except FileNotFoundError:
print('Could not execute command "%s".' % command)
sys.exit(1)