2
0
mirror of https://github.com/mbusb/multibootusb synced 2024-11-01 15:40:16 +00:00

Fix for QEMU under windows post install

This commit is contained in:
mbusb 2017-04-23 16:09:57 +05:30
parent e73e8821ed
commit 9005fb3f52

View File

@ -110,7 +110,7 @@ class Qemu(QtWidgets.QMainWindow, Ui_MainWindow):
disk_number = self.get_physical_disk_number(qemu_usb_disk)
parent_dir = os.getcwd()
os.chdir(resource_path(os.path.join("data", "tools", "qemu")))
cmd = qemu + ' -L . -boot c' + ram + ' -hda //./PhysicalDrive' + disk_number
cmd = quote(qemu) + ' -L . -boot c' + ram + ' -hda //./PhysicalDrive' + disk_number
try:
log("Executing ==> " + cmd)