Skip to content

Commit 73a85a1

Browse files
committed
Web.HTTP: fix pyxfile loading
1 parent 5a45bd1 commit 73a85a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

autoload/vital/__vital__/Web/HTTP.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ function! s:clients.python3.request(settings) abort
581581

582582
" TODO: retry, outputFile
583583
let responses = []
584-
py3file s:py3source
584+
execute 'py3file' s:py3source
585585
return responses
586586
endfunction
587587

@@ -612,7 +612,7 @@ function! s:clients.python2.request(settings) abort
612612

613613
" TODO: retry, outputFile
614614
let responses = []
615-
pyfile s:py2source
615+
execute 'pyfile' s:py2source
616616
return responses
617617
endfunction
618618

0 commit comments

Comments
 (0)