From b2c1017488aba74c2b6f0ea1abd9a80b4cc9e26c Mon Sep 17 00:00:00 2001 From: Bahtiar `kalkin-` Gadimov Date: Sat, 30 Apr 2016 20:42:00 +0200 Subject: [PATCH] Fix missing parameter in Pool.__init__() --- qubes/storage/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qubes/storage/__init__.py b/qubes/storage/__init__.py index 5250b20c..0c528a5f 100644 --- a/qubes/storage/__init__.py +++ b/qubes/storage/__init__.py @@ -287,7 +287,7 @@ class Pool(object): raise NotImplementedError("Pool %s has stop() not implemented" % self.name) - def init_volume(self, volume_config): + def init_volume(self, vm, volume_config): ''' Initialize a :py:class:`qubes.storage.Volume` from `volume_config`. ''' raise NotImplementedError("Pool %s has init_volume() not implemented" %