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:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-11-08 20:58:54 -0500
committerGitHub <noreply@github.com>2021-11-08 20:58:54 -0500
commit4689d837e1c5adf0aba0a0f707ed411a6ceca9cd (patch)
tree17fac93f81d1a0864211834904af5f6971a4b86c /archinstall/lib/disk
parenta6629815e31fb2ba6db5bcca661b9734b9e0cdd8 (diff)
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'])