From c62c733924a11543a4ca92883660c23d9714cb39 Mon Sep 17 00:00:00 2001 From: b Date: Sat, 8 Jul 2023 14:41:03 +0000 Subject: [PATCH] No newline writing in postgata file --- botm_common.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/botm_common.pm b/botm_common.pm index cda92b6..a93b118 100644 --- a/botm_common.pm +++ b/botm_common.pm @@ -25,7 +25,7 @@ use Encode ('encode', 'decode'); use Exporter; -our $VERSION = '1.0.14'; +our $VERSION = '1.0.15'; our @ISA = qw(Exporter); our @EXPORT = (); our @EXPORT_OK = ( @@ -341,7 +341,7 @@ sub write_postdata_file { my $data_encoded = url_query_encode($data, $encoding_data); - print $fh $data_encoded."\n"; + print $fh $data_encoded; # If argument was a path the file must be closed. unless (ref($file)) { -- 2.30.2