Rename Storage.create_on_disk to Storage.create

This commit is contained in:
Bahtiar `kalkin-` Gadimov 2016-06-16 12:39:18 +02:00
부모 930fe417a8
커밋 a4577c0dce
2개의 변경된 파일3개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@ -133,9 +133,8 @@ class Storage(object):
''' Resize volume '''
self.get_pool(volume).resize(volume, size)
# TODO rename it to create()
def create_on_disk(self, source_template=None):
# :pylint: disable=missing-docstring
def create(self, source_template=None):
if source_template is None and hasattr(self.vm, 'template'):
source_template = self.vm.template

파일 보기

@ -1144,7 +1144,7 @@ class QubesVM(qubes.vm.mix.net.NetVMMixin, qubes.vm.BaseVM):
self.log.info('Creating directory: {0}'.format(self.dir_path))
os.makedirs(self.dir_path, mode=0o775)
self.storage.create_on_disk(source_template)
self.storage.create(source_template)
self.log.info('Creating icon symlink: {} -> {}'.format(
self.icon_path, self.label.icon_path))