summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2014-03-19 19:56:19 -0400
committerCole Robinson <crobinso@redhat.com>2014-03-19 20:10:59 -0400
commitbd27910b6f77275b4e82cd2dae247e72d9489b1d (patch)
treef05d9d8009cad91da96db2b4e11a32dbafa6d985
parent008feeb09a1f42f22614d19b94d77179cbcb79a7 (diff)
downloadvirt-manager-bd27910b6f77275b4e82cd2dae247e72d9489b1d.tar.gz
create: Pass correct connection to install for detection
-rw-r--r--virtManager/create.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/virtManager/create.py b/virtManager/create.py
index 757d7009..f0fce471 100644
--- a/virtManager/create.py
+++ b/virtManager/create.py
@@ -1953,7 +1953,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)