From: Rob H. <for...@us...> - 2002-02-25 23:27:35
|
Update of /cvsroot/sandweb/sandweb/lib/SandWeb/Repository In directory usw-pr-cvs1:/tmp/cvs-serv18994/lib/SandWeb/Repository Modified Files: CVS.pm Log Message: fixed space prob in vcs_output Index: CVS.pm =================================================================== RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/Repository/CVS.pm,v retrieving revision 1.27 retrieving revision 1.28 diff -U2 -r1.27 -r1.28 --- CVS.pm 13 Feb 2002 07:42:34 -0000 1.27 +++ CVS.pm 25 Feb 2002 23:27:32 -0000 1.28 @@ -553,8 +553,6 @@ } - my $output = join(" ", "@output_lines"); - my %return = ( - output => $output, + output => join('', @output_lines), errorlevel => $errorlevel ); |