Closed mattoxb closed 2 years ago
Line 110 of virtualbox.py pipes the output of VBoxManage showvminfo --machinereadable through the lines
virtualbox.py
VBoxManage showvminfo --machinereadable
for l in lines: (k, v) = l.split("=", 1)
It happens that VBoxManage doesn't always return lines with an = in them, and this terminates the program.
VBoxManage
=
Seems #32 addresses this already.
Line 110 of
virtualbox.py
pipes the output ofVBoxManage showvminfo --machinereadable
through the linesIt happens that
VBoxManage
doesn't always return lines with an=
in them, and this terminates the program.