# File lib/puppet/network/client/report.rb, line 12
12:   def report(transreport)
13:     report = YAML.dump(transreport)
14: 
15:     report = CGI.escape(report) unless self.local
16: 
17:     # Now send the report
18:     file = nil
19:     benchmark(:info, "Sent transaction report") do
20:       file = @driver.report(report)
21:     end
22: 
23:     file
24:   end