Print 0 instead of nothing
This commit is contained in:
parent
67f5f78f85
commit
e327bf0c80
1 changed files with 4 additions and 1 deletions
|
|
@ -82,7 +82,10 @@ sub process
|
||||||
{
|
{
|
||||||
my $g = shift @ugrades;
|
my $g = shift @ugrades;
|
||||||
$out .= ",";
|
$out .= ",";
|
||||||
$out .= $g if ($g && $g ne $header);
|
if ($g && $g ne $header)
|
||||||
|
$out .= $g;
|
||||||
|
else
|
||||||
|
$out .= "0";
|
||||||
}
|
}
|
||||||
$out .= "\n";
|
$out .= "\n";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue