From 966520a0c1317cb9b203f2751d46ae01f64a9661 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Wed, 26 Feb 2014 12:41:34 +0100 Subject: [PATCH] Bug 11603: Fix delimiter on launching csv2ods For instance, if the delimiter is ';', quote should be put around. --- misc/cronjobs/gather_print_notices.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/cronjobs/gather_print_notices.pl b/misc/cronjobs/gather_print_notices.pl index f93c115..387c980 100755 --- a/misc/cronjobs/gather_print_notices.pl +++ b/misc/cronjobs/gather_print_notices.pl @@ -266,7 +266,7 @@ sub generate_ods { my $csv_filepath = File::Spec->catdir( $tmpdir, $csv_filename ); qx| - $csv2ods_cmd -i $csv_filepath -o $filepath -d $delimiter + $csv2ods_cmd -i $csv_filepath -o $filepath -d "$delimiter" |; } -- 1.7.10.4