From 72759d456f304498dcfd3f3ad3c3fb2c836e994d Mon Sep 17 00:00:00 2001 From: mxi1 Date: Tue, 4 Jan 2011 07:53:35 +0000 Subject: [PATCH] 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 --- xCAT-server/lib/perl/xCAT/Postage.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/perl/xCAT/Postage.pm b/xCAT-server/lib/perl/xCAT/Postage.pm index 504306b3b..638967207 100644 --- a/xCAT-server/lib/perl/xCAT/Postage.pm +++ b/xCAT-server/lib/perl/xCAT/Postage.pm @@ -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, $_); }