From bd27910b6f77275b4e82cd2dae247e72d9489b1d Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Wed, 19 Mar 2014 19:56:19 -0400 Subject: [PATCH] create: Pass correct connection to install for detection --- virtManager/create.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)