View | Details | Raw Unified | Return to bug 33285
Collapse All | Expand All

(-)a/misc/cronjobs/runreport.pl (-4 / +7 lines)
Lines 87-93 Verbose. Without this flag set, only fatal errors are reported. Link Here
87
87
88
=item B<--format>
88
=item B<--format>
89
89
90
Current options are text, html, csv, and tsv. At the moment, text and tsv both produce tab-separated tab-separated output.
90
Current options are text, html, csv, and tsv. At the moment, text and tsv both produce tab-separated output.
91
92
=item B<--separator>
93
94
Separator character, only for csv format. Default to comma.
91
95
92
=item B<--email>
96
=item B<--email>
93
97
Lines 221-228 unless ($format) { Link Here
221
    $format = 'text';
225
    $format = 'text';
222
}
226
}
223
227
224
if( $csv_separator ){
228
if ($csv_separator) {
225
    if( $format eq 'csv' ) {
229
    if ( $format eq 'csv' ) {
226
        $separator = "$csv_separator";
230
        $separator = "$csv_separator";
227
    } else {
231
    } else {
228
        print STDERR "Cannot specify separator if not using CSV format\n";
232
        print STDERR "Cannot specify separator if not using CSV format\n";
229
- 

Return to bug 33285