From: Steinar H. Gunderson Date: Tue, 20 Mar 2007 17:54:20 +0000 (+0000) Subject: Move the counts around a bit. X-Git-Url: https://git.donarmstrong.com/?p=bugscan.git;a=commitdiff_plain;h=6105d8c40612530ff2a544473d7be9e950afbe95;ds=sidebyside Move the counts around a bit. --- diff --git a/bugreport b/bugreport index 8bb3b58..001ce2f 100755 --- a/bugreport +++ b/bugreport @@ -158,15 +158,15 @@ sub MakeStatistics() { printf("Number that have a patch: %d
\n", $patchtotal); printf("Number that have a fix prepared and waiting to upload: %d
\n", $pendingtotal); printf("Number that are being ignored: %d
\n", $ignoretotal); - printf("Number concerning the next release (excluding ignored and not-in-testing): %d
\n", $worrytotal); - printf("Number concerning the current stable release: %d

\n", $stabletotal); + printf("Number concerning the current stable release: %d
\n", $stabletotal); + printf("Number concerning the next release (excluding ignored and not-in-testing): %d

\n", $worrytotal); } else { print "Total number of release-critical bugs: $bugcount\n"; printf("Number that have a patch: %d\n", $patchtotal); printf("Number that have a fix prepared and waiting to upload: %d\n", $pendingtotal); printf("Number that are being ignored: %d\n", $ignoretotal); - printf("Number concerning the next release (excluding ignored and not-in-testing): %d\n", $worrytotal); printf("Number concerning the current stable release: %d

\n", $stabletotal); + printf("Number concerning the next release (excluding ignored and not-in-testing): %d\n", $worrytotal); } }