aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2016-09-10 10:24:57 +0100
committerMike McQuaid2016-09-11 17:59:00 +0100
commitae43b79ca2b4e9ad595fbc70854423e214206102 (patch)
tree18035edaa966a54d06cdf8a62a78644d4c56f6ac /Library
parent4e090530b11bbd61c13024bbdb1ef82387b5fb86 (diff)
downloadbrew-ae43b79ca2b4e9ad595fbc70854423e214206102.tar.bz2
cmd/missing: fix Rubocop warnings.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/missing.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/missing.rb b/Library/Homebrew/cmd/missing.rb
index 181530562..bbd514223 100644
--- a/Library/Homebrew/cmd/missing.rb
+++ b/Library/Homebrew/cmd/missing.rb
@@ -18,7 +18,7 @@ module Homebrew
Diagnostic.missing_deps(ff) do |name, missing|
print "#{name}: " if ff.size > 1
- puts "#{missing * " "}"
+ puts (missing * " ").to_s
end
end
end