From 1c9636c5afc4d066bf9cad7eeec7065ee46eb1d0 Mon Sep 17 00:00:00 2001 From: Bahtiar `kalkin-` Gadimov Date: Sat, 15 Apr 2017 18:42:33 +0200 Subject: [PATCH] DeviceAssignment options are now a dict --- qubes/devices.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubes/devices.py b/qubes/devices.py index 6ef1bc52..108bdb9b 100644 --- a/qubes/devices.py +++ b/qubes/devices.py @@ -63,7 +63,7 @@ class DeviceAssignment(object): # pylint: disable=too-few-public-methods frontend_domain=None): self.backend_domain = backend_domain self.ident = ident - self.options = options or [] + self.options = options or {} self.persistent = persistent self.frontend_domain = frontend_domain