From 656853504feb4aab3168e007aab5a1aee355bff5 Mon Sep 17 00:00:00 2001 From: Alan Hamlett Date: Fri, 26 Oct 2018 21:15:48 -0700 Subject: [PATCH] Drop support for Python 2.6 --- plugin/wakatime.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/wakatime.vim b/plugin/wakatime.vim index 61c9b6d..3b711cb 100644 --- a/plugin/wakatime.vim +++ b/plugin/wakatime.vim @@ -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