Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-03-09 11:36:59 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-03-09 11:36:59 +0100
commit6680f744624af5b0be746525ea4ba4bbcf44401d (patch)
tree83e2bad8fee4d0f2e6437fd9e4ff97e02b66b32a /archinstall
parentc56d4d958ef1797bbdebb883801a905169d454f6 (diff)
Debugging some tweaks
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/disk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py
index 3bbd9344..32dbcbc2 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -146,7 +146,7 @@ class Partition():
self.mount(mountpoint)
mount_information = get_mount_info(self.path)
- fstype = get_filesystem_type(self.real_devicecryptse) # blkid -o value -s TYPE self.path
+ fstype = get_filesystem_type(self.real_device) # blkid -o value -s TYPE self.path
if self.mountpoint != mount_information.get('target', None) and mountpoint:
raise DiskError(f"{self} was given a mountpoint but the actual mountpoint differs: {mount_information.get('target', None)}")