mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-10-07 17:40:30 +00:00
Fix imports
This commit is contained in:
parent
ac716bfb6e
commit
e18cc4ca75
3 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@ from base import Task
|
|||
from common import phases
|
||||
from common.exceptions import TaskError
|
||||
from common.tools import log_check_call
|
||||
from common.bootstrap import Bootstrap
|
||||
from bootstrap import Bootstrap
|
||||
|
||||
|
||||
class FormatVolume(Task):
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
from base import Task
|
||||
from common import phases
|
||||
from common.tools import log_check_call
|
||||
from common.tasks import UnmountVolume
|
||||
from filesystem import UnmountVolume
|
||||
|
||||
|
||||
class PartitionVolume(Task):
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
from manifest import Manifest
|
||||
from tasks import packages
|
||||
from common.tasks import packages as common_packages
|
||||
from tasks import host
|
||||
from common.tasks import host
|
||||
from common.tasks import loopback
|
||||
from common.tasks import parted
|
||||
from common.tasks import filesystem
|
||||
|
|
Loading…
Add table
Reference in a new issue