blob: 4829a2036f12d1530b4640883b60a79cdbc9c09f (
plain)
1
2
3
4
5
6
7
|
require 'puppet/application/face_base'
class Puppet::Application::Help < Puppet::Application::FaceBase
# Meh. Disable the default behaviour, which is to inspect the
# string and return that – not so helpful. --daniel 2011-04-11
def render(result) result end
end
|