summaryrefslogtreecommitdiff
path: root/ale_linters/python/mypy.vim
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-05-12 09:20:16 +0100
committerw0rp <devw0rp@gmail.com>2017-05-12 09:20:16 +0100
commit07b2542c0d6505f2a843e700d246367a522ecf64 (patch)
tree5a0ee411ef62a76d1cf04ccd1bdff4dd8e3e786a /ale_linters/python/mypy.vim
parentfa54f7af97f2bb33eec1363b2262caa5a5b70d0b (diff)
downloadale-07b2542c0d6505f2a843e700d246367a522ecf64.zip
#549 Temporarily revert shell escaping changes, just for Windows
Diffstat (limited to 'ale_linters/python/mypy.vim')
-rw-r--r--ale_linters/python/mypy.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/python/mypy.vim b/ale_linters/python/mypy.vim
index 7275af39..3c8b181f 100644
--- a/ale_linters/python/mypy.vim
+++ b/ale_linters/python/mypy.vim
@@ -30,7 +30,7 @@ function! ale_linters#python#mypy#GetCommand(buffer) abort
let l:executable = ale_linters#python#mypy#GetExecutable(a:buffer)
return l:cd_command
- \ . shellescape(l:executable)
+ \ . ale#Escape(l:executable)
\ . ' --show-column-numbers '
\ . ale#Var(a:buffer, 'python_mypy_options')
\ . ' %s'