Skip to content

Commit 5f2f52a

Browse files
authored
Merge pull request #736 from vim-jp/fix-endmarker
Web.HTTP: Fix endmarker
2 parents 00cf7c0 + 5705268 commit 5f2f52a

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
@@ -301,7 +301,7 @@ function! s:clients.python.request(settings) abort
301301

302302
" TODO: retry, outputFile
303303
let responses = []
304-
python << endpython
304+
python << ENDPYTHON
305305
try:
306306
class DummyClassForLocalScope:
307307
def main():
@@ -394,7 +394,7 @@ except RuntimeError as exception:
394394
if exception.args != ("Exit from local scope",):
395395
raise exception
396396

397-
endpython
397+
ENDPYTHON
398398
return responses
399399
endfunction
400400

0 commit comments

Comments
 (0)