aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/list.rb
diff options
context:
space:
mode:
authorMarkus Reiter2017-06-01 16:06:51 +0200
committerMarkus Reiter2017-06-02 19:22:05 +0200
commit2d6ae61314558b383cfa641e2de0839d5606afca (patch)
tree0da240a31c9dc147fc7998bd6fedd578aa022222 /Library/Homebrew/cmd/list.rb
parent0731a68cde75206682ed972beb47930afa3c434e (diff)
downloadbrew-2d6ae61314558b383cfa641e2de0839d5606afca.tar.bz2
Re-revert "Fix operator spacing."
Diffstat (limited to 'Library/Homebrew/cmd/list.rb')
-rw-r--r--Library/Homebrew/cmd/list.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/list.rb b/Library/Homebrew/cmd/list.rb
index 790d858aa..f5c4e68ac 100644
--- a/Library/Homebrew/cmd/list.rb
+++ b/Library/Homebrew/cmd/list.rb
@@ -129,7 +129,7 @@ module Homebrew
names.each do |d|
versions = d.subdirs.map { |pn| pn.basename.to_s }
next if ARGV.include?("--multiple") && versions.length < 2
- puts "#{d.basename} #{versions*" "}"
+ puts "#{d.basename} #{versions * " "}"
end
end
end