travis ci.py: fix syntax error

Change-Id: Iea0cfac685e85cdb01d4d2878055d2729a741858
This commit is contained in:
Mark Charney
2017-06-13 12:45:14 -04:00
parent 9d4ac08b16
commit ef6ea27855

4
ci.py
View File

@@ -5,8 +5,8 @@ import subprocess
def get_python_cmds():
if platform.system() == 'Linux':
lst = []
#pyvers = ['2.7','3.5.2']:
pyvers = ['2.7']:
#pyvers = ['2.7','3.5.2']
pyvers = ['2.7']
for pyver in pyvers:
pycmd = '/opt/python/{}/bin/python'.format(pyver)
lst.append((pyver,pycmd))