소스 검색

Fix missing parameter in Pool.__init__()

Bahtiar `kalkin-` Gadimov 8 년 전
부모
커밋
b2c1017488
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      qubes/storage/__init__.py

+ 1 - 1
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" %