From dcf9e956a77a0090f3e67dcd609c9c9b5e788f38 Mon Sep 17 00:00:00 2001 From: Martin Grenfell Date: Sat, 10 May 2008 15:45:05 +1200 Subject: [PATCH] minor bugfix --- plugin/NERD_tree.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim index e06832b..3d021a7 100644 --- a/plugin/NERD_tree.vim +++ b/plugin/NERD_tree.vim @@ -890,7 +890,7 @@ function! s:oPath.Copy(dest) dict let cmd = g:NERDTreeCopyCmd . " " . self.StrForOS(0) . " " . dest let success = system(cmd) 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 endfunction