Use correct variable for formatting hosts

This commit is contained in:
Brian Cain 2015-11-16 08:59:25 -08:00
parent a0b0016bcd
commit e8094fb91d

View file

@ -43,7 +43,7 @@ class Utils
def self.prettyprint_hosts(hosts)
puts "Running VMs:"
running_vms.each do |vm|
hosts.each do |vm|
puts "- #{vm}"
end
end