[SCons] Fix missing comma in finding 3to2 on non-Windows

This commit is contained in:
Bryan W. Weber 2016-12-09 17:11:58 -05:00 committed by Ray Speth
parent 9f198f028e
commit b495fe8913

View file

@ -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:'