# File lib/puppet/network/client/dipper.rb, line 37
37:     def getfile(sum)
38:         if newcontents = @driver.getfile(sum)
39:             unless local?
40:                 newcontents = Base64.decode64(newcontents)
41:             end
42:             return newcontents
43:         end
44:         return nil
45:     end