diff options
author | Ivor Peles <ivorpeles@gmail.com> | 2020-11-25 17:34:03 -0500 |
---|---|---|
committer | Ivor Peles <ivorpeles@gmail.com> | 2020-11-25 17:34:03 -0500 |
commit | 340e9660556b87fafb4b9665115bbdcf831c9bc3 (patch) | |
tree | 62f6adcfaed7787a50018cc0c0c723fe39f43d4f /autoload | |
parent | d27a3f453cc15e6b801486115ef5693a499efcc3 (diff) | |
download | ale-340e9660556b87fafb4b9665115bbdcf831c9bc3.zip |
Fix comparison operator
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/fixers/isort.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/fixers/isort.vim b/autoload/ale/fixers/isort.vim index 0ef166e5..1ae6f590 100644 --- a/autoload/ale/fixers/isort.vim +++ b/autoload/ale/fixers/isort.vim @@ -24,7 +24,7 @@ function! ale#fixers#isort#Fix(buffer) abort \ ? ' run isort' \ : '' - if !executable(l:executable) && l:executable != 'pipenv' + if !executable(l:executable) && l:executable !=# 'pipenv' return 0 endif |