Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-11-09 06:35:25 +0000
committerGitHub <noreply@github.com>2021-11-09 06:35:25 +0000
commit8e5869d106f4ddbaf9d8ae87e364a069ae5a923b (patch)
tree17fac93f81d1a0864211834904af5f6971a4b86c /archinstall/lib/disk
parenta6629815e31fb2ba6db5bcca661b9734b9e0cdd8 (diff)
parent4689d837e1c5adf0aba0a0f707ed411a6ceca9cd (diff)
Merge pull request #703 from dylanmtaylor/patch-2
Fix user_interaction import as well - this is also in the parent directory
Diffstat (limited to 'archinstall/lib/disk')
-rw-r--r--archinstall/lib/disk/filesystem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/disk/filesystem.py b/archinstall/lib/disk/filesystem.py
index ac3c9d17..177c58f7 100644
--- a/archinstall/lib/disk/filesystem.py
+++ b/archinstall/lib/disk/filesystem.py
@@ -98,7 +98,7 @@ class Filesystem:
if storage['arguments'] == 'silent':
raise ValueError(f"Missing encryption password for {partition['device_instance']}")
else:
- from .user_interaction import get_password
+ from ..user_interaction import get_password
partition['password'] = get_password(f"Enter a encryption password for {partition['device_instance']}")
partition['device_instance'].encrypt(password=partition['password'])