summaryrefslogtreecommitdiff
path: root/lib/chef/formatters/base.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/formatters/base.rb')
-rw-r--r--lib/chef/formatters/base.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/chef/formatters/base.rb b/lib/chef/formatters/base.rb
index 3a3e3336cc..b2a8c8099b 100644
--- a/lib/chef/formatters/base.rb
+++ b/lib/chef/formatters/base.rb
@@ -212,7 +212,7 @@ class Chef
file_load_failed(path, exception)
end
- def deprecation(message, location=caller(2..2)[0])
+ def deprecation(message, location = caller(2..2)[0])
Chef::Log.deprecation("#{message} at #{location}")
end
@@ -221,7 +221,6 @@ class Chef
end
end
-
# == NullFormatter
# Formatter that doesn't actually produce any output. You can use this to
# disable the use of output formatters.