diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-02-05 15:21:00 -0800 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-02-05 15:21:00 -0800 |
commit | 3d8fa81ee7cc6fce3449b74c69023e206dd53991 (patch) | |
tree | efd9bdc2d4ec875c8d9ed12113e2ab00d2cfe68a /lib/chef/chef_fs | |
parent | cb4ee84e418164e8d2e85147efad711a42ff2799 (diff) | |
download | chef-3d8fa81ee7cc6fce3449b74c69023e206dd53991.tar.gz |
autofixing some missed cops
second round of autofixing for some reason...
Diffstat (limited to 'lib/chef/chef_fs')
-rw-r--r-- | lib/chef/chef_fs/data_handler/data_handler_base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/chef_fs/data_handler/data_handler_base.rb b/lib/chef/chef_fs/data_handler/data_handler_base.rb index b8d0b7cd4f..83f56ed16d 100644 --- a/lib/chef/chef_fs/data_handler/data_handler_base.rb +++ b/lib/chef/chef_fs/data_handler/data_handler_base.rb @@ -94,7 +94,7 @@ class Chef # name to recipe[name]. Then calls uniq on the result. # def normalize_run_list(run_list) - run_list.map{|item| + run_list.map {|item| case item.to_s when /^recipe\[.*\]$/ item # explicit recipe |