support older flake8 output, still used by hacking module from open style guide

This commit is contained in:
Irwan Djajadi 2019-01-16 10:59:05 -06:00
parent d1fc084b2d
commit 08affaad7a
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ function! ale_linters#python#flake8#Handle(buffer, lines) abort
" Matches patterns line the following:
"
" stdin:6:6: E111 indentation is not a multiple of four
let l:pattern = '\v^[a-zA-Z]?:?[^:]+:(\d+):?(\d+)?: ([[:alnum:]]+) (.*)$'
let l:pattern = '\v^[a-zA-Z]?:?[^:]+:(\d+):?(\d+)?: ([[:alnum:]]+):? (.*)$'
let l:output = []
for l:match in ale#util#GetMatches(a:lines, l:pattern)