summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2016-04-13 10:10:58 -0700
committerTim Smith <tsmith84@gmail.com>2016-04-13 10:10:58 -0700
commit87d9240026ee3d2403a020ef5c6012c4e8c87e5d (patch)
tree5858a76e60859f404670e9c613395af1a0e23286
parentf63fe5afa9d132ee24e451890c7c2ba2b4801760 (diff)
downloadohai-87d9240026ee3d2403a020ef5c6012c4e8c87e5d.tar.gz
Add space after comma in debug logging
-rw-r--r--lib/ohai/hints.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ohai/hints.rb b/lib/ohai/hints.rb
index d33cfcce..f170ff45 100644
--- a/lib/ohai/hints.rb
+++ b/lib/ohai/hints.rb
@@ -45,7 +45,7 @@ module Ohai
@hints[name] = parse_hint_file(filename)
end
- Ohai::Log.debug("Did not find hint #{name}.json in the hint path(s): #{Ohai.config[:hints_path].join(',')} ") unless @hints.key?(name)
+ Ohai::Log.debug("Did not find hint #{name}.json in the hint path(s): #{Ohai.config[:hints_path].join(', ')} ") unless @hints.key?(name)
@hints[name]
end
end