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

Improve vmware error message for easier copy paste

This commit is contained in:
Julien Duponchelle 2016-11-28 09:59:38 +01:00
parent a776b36e98
commit 60a145afbb
No known key found for this signature in database
GPG Key ID: CE8B29639E07F5E8

View File

@ -27,6 +27,7 @@ import asyncio
import subprocess
import logging
import codecs
import shlex
from collections import OrderedDict
from gns3server.utils.interfaces import interfaces
@ -379,7 +380,7 @@ class VMware(BaseManager):
command = [vmrun_path, "-T", self.host_type, subcommand]
command.extend(args)
command_string = " ".join(command)
command_string = " ".join([shlex.quote(c) for c in command])
log.log(log_level, "Executing vmrun with command: {}".format(command_string))
try:
process = yield from asyncio.create_subprocess_exec(*command, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE)