# HG changeset patch # User Steve Losh # Date 1449503542 0 # Node ID 80be9ec7656dac2388d6c87ab2e7786f52783d75 # Parent 1d8370c9bf7f6c474d9bebf48cf55e9063667d2e# Parent 7ec49c438c416f59c80d50b26eca63bc52444d8c Merge. diff -r 1d8370c9bf7f -r 80be9ec7656d autoload/gundo.vim --- a/autoload/gundo.vim Wed Oct 07 10:34:15 2015 +0700 +++ b/autoload/gundo.vim Mon Dec 07 15:52:22 2015 +0000 @@ -280,10 +280,10 @@ function! s:GundoOpen()"{{{ if !exists('g:gundo_py_loaded') if s:has_supported_python == 2 && g:gundo_prefer_python3 - exe 'py3file ' . s:plugin_path . '/gundo.py' + exe 'py3file ' . escape(s:plugin_path, ' ') . '/gundo.py' python3 initPythonModule() else - exe 'pyfile ' . s:plugin_path . '/gundo.py' + exe 'pyfile ' . escape(s:plugin_path, ' ') . '/gundo.py' python initPythonModule() endif