Fixed incorrect warning variable in summary report.

Removed extra colons from hash table headings.
This commit is contained in:
Asif Bacchus 2018-10-18 00:50:11 -06:00
parent 65c8bf8113
commit 9201032afa
1 changed files with 3 additions and 3 deletions

View File

@ -41,13 +41,13 @@ if ($detailLevel == 0) {
### fill hash table with headings and summary counts
if ($summarySuccess > 0) {
$reportHash{"All processes successfully completed:"} = $summarySuccess;
$reportHash{"All processes successfully completed"} = $summarySuccess;
}
if ($summaryWarn > 0) {
$reportHash{"Warnings issued:"} = $summaryStatusUpToDate;
$reportHash{"Warnings issued"} = $summaryWarn;
}
if ($summaryErr > 0) {
$reportHash{"Errors encountered:"} = $summaryErr;
$reportHash{"Errors encountered"} = $summaryErr;
}
### print hash table