From 8316d4d2f6ed6afa55e36073f0d7ef878b003918 Mon Sep 17 00:00:00 2001
From: Fridolin Somers <fridolin.somers@biblibre.com>
Date: Fri, 31 Mar 2023 12:16:43 -1000
Subject: [PATCH] Bug 33285: (QA follow-up) add POD and fix some code style

Signed-off-by: Fridolin Somers <fridolin.somers@biblibre.com>
---
 misc/cronjobs/runreport.pl | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/misc/cronjobs/runreport.pl b/misc/cronjobs/runreport.pl
index c8ba5bed08..debcf5a024 100755
--- a/misc/cronjobs/runreport.pl
+++ b/misc/cronjobs/runreport.pl
@@ -87,7 +87,11 @@ Verbose. Without this flag set, only fatal errors are reported.
 
 =item B<--format>
 
-Current options are text, html, csv, and tsv. At the moment, text and tsv both produce tab-separated tab-separated output.
+Current options are text, html, csv, and tsv. At the moment, text and tsv both produce tab-separated output.
+
+=item B<--separator>
+
+Separator character, only for csv format. Default to comma.
 
 =item B<--email>
 
@@ -221,8 +225,8 @@ unless ($format) {
     $format = 'text';
 }
 
-if( $csv_separator ){
-    if( $format eq 'csv' ) {
+if ($csv_separator) {
+    if ( $format eq 'csv' ) {
         $separator = "$csv_separator";
     } else {
         print STDERR "Cannot specify separator if not using CSV format\n";
-- 
2.39.0