1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Fixes typo.

This commit is contained in:
grossmj 2015-04-28 22:16:15 -06:00
parent 461e3ce53f
commit 0311a0086e

View File

@ -151,7 +151,7 @@ class VirtualBox(BaseManager):
try:
yield from self.execute("closemedium", ["disk", hdd_file])
except VirtualBoxError as e:
log.warning("Could not close VirtualBox VM disk file {}: {error}".format(os.path.basename(hdd_file), e))
log.warning("Could not close VirtualBox VM disk file {}: {}".format(os.path.basename(hdd_file), e))
continue
@asyncio.coroutine