From 958f3ceed99009a8b781b31f8de2597ab2edc8b3 Mon Sep 17 00:00:00 2001
From: Sergey Matveev <stargrave@stargrave.org>
Date: Sat, 14 Dec 2019 14:36:25 +0300
Subject: [PATCH] I use Python3 by default now and flake8 does not install
 somehow

---
 vim/.vim/ftplugin/python/pylint.vim | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vim/.vim/ftplugin/python/pylint.vim b/vim/.vim/ftplugin/python/pylint.vim
index 4a61ee3..c67570e 100644
--- a/vim/.vim/ftplugin/python/pylint.vim
+++ b/vim/.vim/ftplugin/python/pylint.vim
@@ -67,7 +67,7 @@ function! PylintStart()
         \"too-many-public-methods",
         \"no-value-for-parameter",
     \]
-    if !exists("g:pylint_linter") | let g:pylint_linter = "flake8" | endif
+    if !exists("g:pylint_linter") | let g:pylint_linter = "pylint" | endif
     if g:pylint_linter == "flake8"
         let cmdline = [
             \"flake8",
-- 
2.51.0