diff options
author | w0rp <devw0rp@gmail.com> | 2018-04-10 15:18:16 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-04-10 15:18:16 +0100 |
commit | 3f0e1cd05dc526b073946ad96c64f6a5e2f9e4e6 (patch) | |
tree | 36439d5ceabbe84291ae906fe7815456602a9e33 /ale_linters | |
parent | 9d006952497ec226e87d52dc0f8e9e408138f63b (diff) | |
download | ale-3f0e1cd05dc526b073946ad96c64f6a5e2f9e4e6.zip |
Fix #1492 - Make pylint error parsing work on Windows
Diffstat (limited to 'ale_linters')
-rw-r--r-- | ale_linters/python/pylint.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/python/pylint.vim b/ale_linters/python/pylint.vim index 27ee6c61..5eafd8f7 100644 --- a/ale_linters/python/pylint.vim +++ b/ale_linters/python/pylint.vim @@ -25,7 +25,7 @@ function! ale_linters#python#pylint#Handle(buffer, lines) abort " Matches patterns like the following: " " test.py:4:4: W0101 (unreachable) Unreachable code - let l:pattern = '\v^[^:]+:(\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) |