Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-10-22 21:02:39 +0200
committerAnton Hvornum <anton@hvornum.se>2021-10-22 21:02:39 +0200
commit8b96080ec81939f3a69c28585c21c43e496d087b (patch)
tree8a78d899770c5337a0ade816336558d4e1bdcf6e /archinstall/lib
parent2ef793b76af3173c3bbe7fd9942263df6d84d464 (diff)
Forgot some imports that didn't show up on a static run without going through a few of the menu's
Diffstat (limited to 'archinstall/lib')
-rw-r--r--archinstall/lib/disk/blockdevice.py1
-rw-r--r--archinstall/lib/disk/partition.py1
-rw-r--r--archinstall/lib/disk/user_guides.py1
3 files changed, 3 insertions, 0 deletions
diff --git a/archinstall/lib/disk/blockdevice.py b/archinstall/lib/disk/blockdevice.py
index 422f35aa..daa65323 100644
--- a/archinstall/lib/disk/blockdevice.py
+++ b/archinstall/lib/disk/blockdevice.py
@@ -1,4 +1,5 @@
import json
+import logging
from ..output import log
from ..general import SysCommand
diff --git a/archinstall/lib/disk/partition.py b/archinstall/lib/disk/partition.py
index 6b60347f..30151583 100644
--- a/archinstall/lib/disk/partition.py
+++ b/archinstall/lib/disk/partition.py
@@ -1,6 +1,7 @@
import glob
import pathlib
import time
+import logging
from typing import Optional
from .blockdevice import BlockDevice
from ..output import log
diff --git a/archinstall/lib/disk/user_guides.py b/archinstall/lib/disk/user_guides.py
index f6466268..0a975149 100644
--- a/archinstall/lib/disk/user_guides.py
+++ b/archinstall/lib/disk/user_guides.py
@@ -1,3 +1,4 @@
+import logging
from ..output import log
def suggest_single_disk_layout(block_device, default_filesystem=None):