Drop support for Python 2.6

This commit is contained in:
Alan Hamlett 2018-10-26 21:15:48 -07:00
parent ca44a562f3
commit 656853504f
1 changed files with 1 additions and 1 deletions

View File

@ -285,7 +285,7 @@ let s:VERSION = '7.1.2'
let paths = ['python3']
if s:IsWindows()
let pyver = 39
while pyver >= 26
while pyver >= 27
let paths = paths + [printf('/Python%d/pythonw', pyver), printf('/python%d/pythonw', pyver), printf('/Python%d/python', pyver), printf('/python%d/python', pyver)]
let pyver = pyver - 1
endwhile