From fd71d7fea5e2024adc23959af54aa7a61ed8d54f Mon Sep 17 00:00:00 2001 From: Cole Robinson Date: Mon, 27 Jan 2020 11:44:19 -0500 Subject: [PATCH] guest: Remove bogus conditional This incorrectly always evaluates to True. But no one ever complained so let's keep that behavior the same Signed-off-by: Cole Robinson --- virtinst/guest.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/virtinst/guest.py b/virtinst/guest.py index e47c26241..6995d2c21 100644 --- a/virtinst/guest.py +++ b/virtinst/guest.py @@ -1029,9 +1029,6 @@ class Guest(XMLBuilder): return if not self.os.is_hvm(): return - if not (self.os.is_x86() or - self.os.is_arm_machvirt): - return dev = DeviceSound(self.conn) dev.set_defaults(self)