summaryrefslogtreecommitdiff
path: root/lib/chef/provider.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/provider.rb')
-rw-r--r--lib/chef/provider.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/provider.rb b/lib/chef/provider.rb
index eeef182f73..8bf6842f70 100644
--- a/lib/chef/provider.rb
+++ b/lib/chef/provider.rb
@@ -112,7 +112,7 @@ class Chef
run_context.events
end
- def run_action(action=nil)
+ def run_action(action = nil)
@action = action unless action.nil?
# TODO: it would be preferable to get the action to be executed in the
@@ -244,7 +244,7 @@ class Chef
true
end
- def self.provides(short_name, opts={}, &block)
+ def self.provides(short_name, opts = {}, &block)
Chef.provider_handler_map.set(short_name, self, opts, &block)
end