removed the single quote from the get_pkglist_tex() subroutine in Postage.pm

git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8543 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
mxi1 2011-01-04 07:53:35 +00:00
parent 276b28372d
commit 72759d456f

View File

@ -708,7 +708,7 @@ sub get_pkglist_tex
if (/^@(.*)/)
{ #for groups that has space in name
my $save = $1;
if ($1 =~ / /) { $_ = "\@\'" . $save . "\'"; }
if ($1 =~ / /) { $_ = "\@" . $save; }
}
push(@otherpkgs, $_);
}