diff options
Diffstat (limited to 'lib/chef/shell_out.rb')
-rw-r--r-- | lib/chef/shell_out.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/shell_out.rb b/lib/chef/shell_out.rb index bf6018df52..54ff718e8e 100644 --- a/lib/chef/shell_out.rb +++ b/lib/chef/shell_out.rb @@ -5,7 +5,7 @@ class Chef def initialize(*args) Chef::Log.warn("Chef::ShellOut is deprecated, please use Mixlib::ShellOut") - called_from = caller[0..3].inject("Called from:\n") {|msg, trace_line| msg << " #{trace_line}\n" } + called_from = caller[0..3].inject("Called from:\n") { |msg, trace_line| msg << " #{trace_line}\n" } Chef::Log.warn(called_from) super end |