Explorar el Código

Bugfixed

According to @marmarek's request
Marta Marczykowska-Górecka hace 6 años
padre
commit
c1bb8ba2ad
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      qubesmanager/create_new_vm.py

+ 1 - 1
qubesmanager/create_new_vm.py

@@ -123,7 +123,7 @@ class NewVmDlg(QtGui.QDialog, Ui_NewVMDlg):
         properties['netvm'] = self.netvm_list[self.netvm.currentIndex()]
         if self.install_system.isChecked():
             properties['virt_mode'] = 'hvm'
-            properties['kernel'] = 'none'
+            properties['kernel'] = None
 
         thread_monitor = ThreadMonitor()
         thread = threading.Thread(target=self.do_create_vm,