2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-22 11:42:05 +00:00

Use comma separate list

This commit is contained in:
Casandra Qiu 2018-05-21 09:21:50 -04:00
parent c7af2c30c8
commit 66cbeeeee9

View File

@ -4604,7 +4604,11 @@ sub defch_usage
foreach my $t (sort(keys %{xCAT::Schema::defspec}))
{
$dataobj = $dataobj . ' ' . $t;
if ($dataobj) {
$dataobj = $dataobj . ',' . $t;
} else {
$dataobj = $t;
}
}
$rsp->{data}->[$n] = "$dataobj\n";
$n++;