summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCole Robinson <crobinso@redhat.com>2020-11-13 13:09:03 -0500
committerCole Robinson <crobinso@redhat.com>2020-11-13 13:09:03 -0500
commitb7b75ab8fcdde49be727d5961d5f724f846ae10b (patch)
treecc7d7f45b6e068d501933d38d320da2e138bb8e9
parent2b864a929491f96197b22907b9789972daeef73e (diff)
downloadvirt-manager-b7b75ab8fcdde49be727d5961d5f724f846ae10b.tar.gz
fsdetails: Drop driver="handle" UI
It was removed in qemu 4.0.0 Signed-off-by: Cole Robinson <crobinso@redhat.com>
-rw-r--r--virtManager/device/fsdetails.py3
-rw-r--r--virtinst/devices/filesystem.py1
2 files changed, 1 insertions, 3 deletions
diff --git a/virtManager/device/fsdetails.py b/virtManager/device/fsdetails.py
index 2ac13f62..7fca3218 100644
--- a/virtManager/device/fsdetails.py
+++ b/virtManager/device/fsdetails.py
@@ -100,8 +100,7 @@ class vmmFSDetails(vmmGObjectUI):
drivers = []
if self.conn.is_qemu() or self.conn.is_test():
- drivers += [DeviceFilesystem.DRIVER_PATH,
- DeviceFilesystem.DRIVER_HANDLE]
+ drivers += [DeviceFilesystem.DRIVER_PATH]
if self.conn.is_lxc() or self.conn.is_test():
drivers += [DeviceFilesystem.DRIVER_LOOP,
DeviceFilesystem.DRIVER_NBD]
diff --git a/virtinst/devices/filesystem.py b/virtinst/devices/filesystem.py
index 9eb29cf0..dbe38208 100644
--- a/virtinst/devices/filesystem.py
+++ b/virtinst/devices/filesystem.py
@@ -25,7 +25,6 @@ class DeviceFilesystem(Device):
MODES = [MODE_PASSTHROUGH, MODE_MAPPED, MODE_SQUASH]
DRIVER_PATH = "path"
- DRIVER_HANDLE = "handle"
DRIVER_LOOP = "loop"
DRIVER_NBD = "nbd"