[SCons] Fix missing comma in finding 3to2 on non-Windows
This commit is contained in:
parent
9f198f028e
commit
b495fe8913
1 changed files with 1 additions and 1 deletions
|
|
@ -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:'
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue