Telnet to pipe support for VirtualBox.

This commit is contained in:
grossmj
2014-07-17 20:02:18 -06:00
parent 9ac2716826
commit 65d70bacfa
4 changed files with 532 additions and 9 deletions

View File

@ -348,7 +348,7 @@ class VPCSDevice(object):
raise VPCSError("VPCS executable version must be >= 0.5b1")
else:
raise VPCSError("Could not determine the VPCS version for {}".format(self._path))
except OSError as e:
except (OSError, subprocess.CalledProcessError) as e:
raise VPCSError("Error while looking for the VPCS version: {}".format(e))
def start(self):