virt-manager/532a3213-pass-correct-connection-to-install.patch
Charles Arnold db55bd4269 532a3213-pass-correct-connection-to-install.patch
532a3213-fix-url-autodetect-timeout.patch
  532a3213-exit-URL-detection-immediately-if-detection-fails.patch

OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=154
2014-03-20 01:47:09 +00:00

20 lines
791 B
Diff

Subject: create: Pass correct connection to install for detection
From: Cole Robinson crobinso@redhat.com Wed Mar 19 19:56:19 2014 -0400
Date: Wed Mar 19 20:10:59 2014 -0400:
Git: bd27910b6f77275b4e82cd2dae247e72d9489b1d
Index: virt-manager-1.0.0/virtManager/create.py
===================================================================
--- virt-manager-1.0.0.orig/virtManager/create.py
+++ virt-manager-1.0.0/virtManager/create.py
@@ -1962,7 +1962,7 @@ class vmmCreate(vmmGObjectUI):
def actually_detect(self, media):
try:
- installer = virtinst.DistroInstaller(self.conn)
+ installer = virtinst.DistroInstaller(self.conn.get_backend())
installer.location = media
self.detectedDistro = installer.detect_distro(self.guest)