summaryrefslogtreecommitdiffstats
path: root/lib/puppet/reports
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-07-04 16:27:35 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2006-07-04 16:27:35 +0000
commitc3a8d45ee644b0e7d71e62014cb65b8e8174391c (patch)
tree1c93013401e3f108b7b9512c3dca853767ec952b /lib/puppet/reports
parent3c22bc944d68210881411f0c80f2252516557f5d (diff)
Redoing reporting a bit, so that reports are now defined as methods. If they are not methods, then they cannot use return, which makes things a bit uglier.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1359 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet/reports')
-rw-r--r--lib/puppet/reports/tagmail.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/reports/tagmail.rb b/lib/puppet/reports/tagmail.rb
index 16096f62f..9866a8bc5 100644
--- a/lib/puppet/reports/tagmail.rb
+++ b/lib/puppet/reports/tagmail.rb
@@ -15,7 +15,7 @@ require 'net/smtp'
Puppet::Server::Report.newreport(:tagmail) do |report|
unless FileTest.exists?(Puppet[:tagmap])
- Puppet.notice "Cannot send tagmail report; not tagmap file %s" %
+ Puppet.notice "Cannot send tagmail report; no tagmap file %s" %
Puppet[:tagmap]
return
end