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/node | |
parent | cb4ee84e418164e8d2e85147efad711a42ff2799 (diff) | |
download | chef-3d8fa81ee7cc6fce3449b74c69023e206dd53991.tar.gz |
autofixing some missed cops
second round of autofixing for some reason...
Diffstat (limited to 'lib/chef/node')
-rw-r--r-- | lib/chef/node/attribute.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/node/attribute.rb b/lib/chef/node/attribute.rb index 13ce75455f..ab97cf99bf 100644 --- a/lib/chef/node/attribute.rb +++ b/lib/chef/node/attribute.rb @@ -480,7 +480,7 @@ class Chef end def inspect - "#<#{self.class} " << (COMPONENTS + [:@merged_attributes, :@properties]).map{|iv| + "#<#{self.class} " << (COMPONENTS + [:@merged_attributes, :@properties]).map {|iv| "#{iv}=#{instance_variable_get(iv).inspect}" }.join(", ") << ">" end |