From b495fe89132accf24ba574363d52ff9d00d4dbce Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Fri, 9 Dec 2016 17:11:58 -0500 Subject: [PATCH] [SCons] Fix missing comma in finding 3to2 on non-Windows --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 4c439113c..e86357140 100644 --- a/SConstruct +++ b/SConstruct @@ -1106,7 +1106,7 @@ if env['python_package'] in ('full','default'): ret = getCommandOutput(env['python_cmd'], threetotwo_cmd, '-l') env['threetotwo_cmd'] = [env['python_cmd'], threetotwo_cmd] else: - ret = getCommandOutput('3to2' '-l') + ret = getCommandOutput('3to2', '-l') except (OSError, subprocess.CalledProcessError) as err: if env['VERBOSE']: print 'Error checking for 3to2:'