diff options
author | Brendan Maginnis <brendan.maginnis@gmail.com> | 2021-12-09 14:24:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-09 23:24:32 +0900 |
commit | b9744076a1603b37bc861e1aa885bbc052e0ed63 (patch) | |
tree | 9757a41bb0c609e1254840f631eb95d7a59ff2da /ale_linters/python | |
parent | 9a01836015f2bd1ace3918eb23a5b4f16910d722 (diff) | |
download | ale-b9744076a1603b37bc861e1aa885bbc052e0ed63.zip |
Pass full path to pydocstyle (#3995)
* Pass full path to pydocstyle
* Update pydocstyle tests
Diffstat (limited to 'ale_linters/python')
-rw-r--r-- | ale_linters/python/pydocstyle.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/python/pydocstyle.vim b/ale_linters/python/pydocstyle.vim index aa0e8b20..ef0d818c 100644 --- a/ale_linters/python/pydocstyle.vim +++ b/ale_linters/python/pydocstyle.vim @@ -29,7 +29,7 @@ function! ale_linters#python#pydocstyle#GetCommand(buffer) abort return ale#Escape(l:executable) . l:exec_args \ . ale#Pad(ale#Var(a:buffer, 'python_pydocstyle_options')) - \ . ' %s:t' + \ . ' %s' endfunction function! ale_linters#python#pydocstyle#Handle(buffer, lines) abort |