From 86af4be0d0ca484c8549ea331f07732680784cd9 Mon Sep 17 00:00:00 2001 From: Pablo Acosta-Serafini Date: Mon, 14 Jan 2019 20:36:14 -0500 Subject: Fixed parsing of pydocstyle errors ale#Escape function seems to prepend and append ' to the file name, which are not present in the pydocstyle output. Having the parsing regexp match the file name was overkill anyway, since there is an obvious 1:1 correspondence between the buffer number and the (potential) errors reported by pydocstyle. --- ale_linters/python/pydocstyle.vim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'ale_linters/python') diff --git a/ale_linters/python/pydocstyle.vim b/ale_linters/python/pydocstyle.vim index ebf92bf1..177f5e0f 100644 --- a/ale_linters/python/pydocstyle.vim +++ b/ale_linters/python/pydocstyle.vim @@ -33,8 +33,7 @@ function! ale_linters#python#pydocstyle#Handle(buffer, lines) abort " Matches patterns like the following: " mydir/myfile.py:33 in public function `myfunction`: " DXXX: Error description - let l:fname = ale#Escape(fnamemodify(bufname(a:buffer), ':p:t')) - let l:line1_pattern = '\v^' . l:fname . ':\s*(\d+)\s+.*$' + let l:line1_pattern = '\v^.*:\s*(\d+)\s+.*$' let l:line2_pattern = '\v^.*([a-zA-Z]\d+):\s*(.*)$' let l:output = [] -- cgit v1.2.3