Archived
1
0

Print 0 instead of nothing

This commit is contained in:
Mercier Pierre-Olivier 2013-10-30 17:10:36 +01:00
parent 67f5f78f85
commit e327bf0c80

View File

@ -82,7 +82,10 @@ sub process
{
my $g = shift @ugrades;
$out .= ",";
$out .= $g if ($g && $g ne $header);
if ($g && $g ne $header)
$out .= $g;
else
$out .= "0";
}
$out .= "\n";
}