1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

[Libvirt] corrected typo for appending string output to IO.popen

This commit is contained in:
Patrick Debois 2011-09-12 18:36:50 +03:00
parent 308569b016
commit 31ab178dac

View file

@ -344,7 +344,7 @@ module Fog
# Execute the ip_command locally
IO.popen("#{ip_command}") do |p|
p.each_line do |l|
ip_address=+l
ip_address+=l
end
status=Process.waitpid2(p.pid)[1].exitstatus
if status!=0