From f927f12e3941004674aba9428ca9d11676f4e7b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Fri, 2 Aug 2013 22:23:26 +0200 Subject: [PATCH] QubesWniVmStorage: pass all positional parameters to base class --- core/storage/wni.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/storage/wni.py b/core/storage/wni.py index 52f80e35..65f6400a 100644 --- a/core/storage/wni.py +++ b/core/storage/wni.py @@ -37,8 +37,8 @@ class QubesWniVmStorage(QubesVmStorage): Class for VM storage of WNI VMs. """ - def __init__(self, vm, **kwargs): - super(QubesWniVmStorage, self).__init__(vm, **kwargs) + def __init__(self, *args, **kwargs): + super(QubesWniVmStorage, self).__init__(*args, **kwargs) # Use the user profile as "private.img" self.private_img = os.path.join("c:\\Users", self.vm.name)