summaryrefslogtreecommitdiff
path: root/lib/chef/deprecation/warnings.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/deprecation/warnings.rb')
-rw-r--r--lib/chef/deprecation/warnings.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/deprecation/warnings.rb b/lib/chef/deprecation/warnings.rb
index 2286489d5f..22b28f93b0 100644
--- a/lib/chef/deprecation/warnings.rb
+++ b/lib/chef/deprecation/warnings.rb
@@ -27,7 +27,7 @@ class Chef
Chef::Log.warn "Method '#{name}' of '#{self.class}' is deprecated. It will be removed in Chef 12."
Chef::Log.warn "Please update your cookbooks accordingly. Accessed from:"
caller[0..3].each {|l| Chef::Log.warn l}
- m.send(args)
+ super(*args)
end
end
end