From 45a4eea5b94d5a90aa83014c51366d42c39ed746 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Wed, 17 Aug 2011 13:18:47 +0200 Subject: Bug 662070: Use say() instead of print() where appropriate r=glob a=LpSolit --- report.cgi | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'report.cgi') diff --git a/report.cgi b/report.cgi index a71776bfe..20e899a6b 100755 --- a/report.cgi +++ b/report.cgi @@ -287,10 +287,10 @@ print $cgi->header(-type => $format->{'ctype'}, # prints out both data structures. if ($cgi->param('debug')) { require Data::Dumper; - print "
data hash:\n";
-    print Data::Dumper::Dumper(%data) . "\n\n";
-    print "data array:\n";
-    print Data::Dumper::Dumper(@image_data) . "\n\n
"; + say "
data hash:";
+    say Data::Dumper::Dumper(%data);
+    say "\ndata array:";
+    say Data::Dumper::Dumper(@image_data) . "\n\n
"; } # All formats point to the same section of the documentation. -- cgit v1.2.3-24-g4f1b