Fix 0
This commit is contained in:
parent
d44ffa7153
commit
80d3352b78
1 changed files with 3 additions and 2 deletions
|
@ -82,10 +82,11 @@ sub process
|
||||||
{
|
{
|
||||||
my $g = shift @ugrades;
|
my $g = shift @ugrades;
|
||||||
$out .= ",";
|
$out .= ",";
|
||||||
if ($g && $g ne $header)
|
if ($g && $g ne $header) {
|
||||||
$out .= $g;
|
$out .= $g;
|
||||||
else
|
} else {
|
||||||
$out .= "0";
|
$out .= "0";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$out .= "\n";
|
$out .= "\n";
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue