diff options
author | Jon Cowie <jonlives@gmail.com> | 2018-02-27 17:52:02 +0000 |
---|---|---|
committer | Jon Cowie <jonlives@gmail.com> | 2018-02-27 17:52:02 +0000 |
commit | 5f8b2df08cdce06533f050654598f0ec7308a69d (patch) | |
tree | 41999e2864a7b7da74948178137ab11728837736 /lib/chef | |
parent | 7ef8048ff6ac8972fc7dcce6c93e45becefb32f4 (diff) | |
download | chef-5f8b2df08cdce06533f050654598f0ec7308a69d.tar.gz |
Minor chefstyle fix
Signed-off-by: Jon Cowie <jonlives@gmail.com>
Diffstat (limited to 'lib/chef')
-rw-r--r-- | lib/chef/data_collector.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/data_collector.rb b/lib/chef/data_collector.rb index 3eb6565fa8..1daf3b2456 100644 --- a/lib/chef/data_collector.rb +++ b/lib/chef/data_collector.rb @@ -302,7 +302,7 @@ class Chef end def setup_http_output_locations - Chef::Config[:data_collector][:output_locations][:urls].each_with_object({}) do |location_url,http_output_locations| + Chef::Config[:data_collector][:output_locations][:urls].each_with_object({}) do |location_url, http_output_locations| http_output_locations[location_url] = setup_http_client(location_url) end end |