Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk/filesystem.py
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall/lib/disk/filesystem.py')
-rw-r--r--archinstall/lib/disk/filesystem.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py
index b53d8451..28846764 100644
--- a/archinstall/lib/disk/filesystem.py
+++ b/archinstall/lib/disk/filesystem.py
@@ -1,7 +1,11 @@
import time
+import logging
+import json
from .partition import Partition
from .blockdevice import BlockDevice
+from ..general import SysCommand
from ..output import log
+from ..storage import storage
GPT = 0b00000001
MBR = 0b00000010
@@ -58,7 +62,7 @@ class Filesystem:
return index
def load_layout(self, layout :dict):
- from .luks import luks2
+ from ..luks import luks2
# If the layout tells us to wipe the drive, we do so
if layout.get('wipe', False):