--- 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