From 5693758e4650150d2bf9bcda1baf18334ad26e01 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sat, 31 Dec 2016 20:07:53 +0100 Subject: style: fix E231 violations E231: missing whitespace after ',' Signed-off-by: Igor Gnatenko --- mesonbuild/scripts/commandrunner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/scripts/commandrunner.py') diff --git a/mesonbuild/scripts/commandrunner.py b/mesonbuild/scripts/commandrunner.py index 695301b9a..30a7da2f3 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) -- cgit v1.2.3