Fixup tests for auto-pipenv

This commit is contained in:
Miklós Tusz
2018-12-21 20:28:17 -08:00
parent 4bf260e953
commit 48057407ec
2 changed files with 2 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ function! ale#fixers#black#Fix(buffer) abort
let l:options = ale#Var(a:buffer, 'python_black_options')
return {
\ 'command': ale#Escape(l:executable. l:exec_args)
\ 'command': ale#Escape(l:executable) . l:exec_args
\ . (!empty(l:options) ? ' ' . l:options : '')
\ . ' -',
\}