missed a )

This commit is contained in:
Steven Robertson 2020-09-22 21:24:24 -07:00
parent c73f19f276
commit 1154a979b1
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ if os.environ['PYTHONVERSION'].startswith('2'):
'/usr/local/bin/python{pv} -m virtualenv /tmp/venv -p /usr/local/bin/python{pv}'.format(py=os.environ['PYTHONVERSION'])
])
else:
venv_steps.append('/usr/local/bin/python{pv} -m venv /tmp/venv'.format(py=os.environ['PYTHONVERSION'])
venv_steps.append('/usr/local/bin/python{pv} -m venv /tmp/venv'.format(py=os.environ['PYTHONVERSION']))
batches.append(venv_steps)