minor bugfix

This commit is contained in:
Martin Grenfell 2008-05-10 15:45:05 +12:00
parent 8aafa66eac
commit dcf9e956a7

View File

@ -890,7 +890,7 @@ function! s:oPath.Copy(dest) dict
let cmd = g:NERDTreeCopyCmd . " " . self.StrForOS(0) . " " . dest let cmd = g:NERDTreeCopyCmd . " " . self.StrForOS(0) . " " . dest
let success = system(cmd) let success = system(cmd)
if success != 0 if success != 0
throw "NERDTree.Path Exception: Could not copy ''". self.StrForOS() ."'' to: '" . a:dest . "'" throw "NERDTree.Path Exception: Could not copy ''". self.StrForOS(0) ."'' to: '" . a:dest . "'"
endif endif
endfunction endfunction