Fix issue with Qemu networking following merge

This commit is contained in:
Julien Duponchelle 2015-10-07 09:01:17 +02:00
parent 5e3ce48a52
commit ec7a9615ac

View File

@ -1438,7 +1438,7 @@ class QemuVM(BaseVM):
else:
raise QemuError("Console type {} is unknown".format(self._console_type))
command.extend(self._monitor_options())
command.extend(self._network_options())
command.extend((yield from self._network_options()))
command.extend(self._graphic())
additional_options = self._options.strip()
if additional_options: