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