summaryrefslogtreecommitdiffstats
path: root/whineatnews.pl
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2011-08-17 13:18:47 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2011-08-17 13:18:47 +0200
commit45a4eea5b94d5a90aa83014c51366d42c39ed746 (patch)
tree246c8c9a9e038fd40872601a852422cee8039fc3 /whineatnews.pl
parent589632e9d5d35c25c932aafa164feb92c26f5e3d (diff)
downloadbugzilla-45a4eea5b94d5a90aa83014c51366d42c39ed746.tar.gz
bugzilla-45a4eea5b94d5a90aa83014c51366d42c39ed746.tar.xz
Bug 662070: Use say() instead of print() where appropriate
r=glob a=LpSolit
Diffstat (limited to 'whineatnews.pl')
-rwxr-xr-xwhineatnews.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/whineatnews.pl b/whineatnews.pl
index 3bfe29871..76be17f11 100755
--- a/whineatnews.pl
+++ b/whineatnews.pl
@@ -94,5 +94,5 @@ foreach my $email (sort (keys %bugs)) {
MessageToMTA($msg);
- print "$email " . join(" ", @{$bugs{$email}}) . "\n";
+ say "$email " . join(" ", @{$bugs{$email}});
}