Fix error in logging of error during starting GNS3 VM

This commit is contained in:
Julien Duponchelle 2017-05-23 13:39:41 +02:00
parent 5bb6c51698
commit d765d02f06
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -250,7 +250,7 @@ class GNS3VM:
force=True)
except aiohttp.web.HTTPConflict:
pass
log.error("Can't start the GNS3 VM: {}", str(e))
log.error("Can't start the GNS3 VM: %s", str(e))
@asyncio.coroutine
def exit_vm(self):