Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/disk.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-04-09 11:54:48 +0200
committerAnton Hvornum <anton@hvornum.se>2021-04-09 11:54:48 +0200
commiteb7ed1126bcfece5ec2fba40b24227e02082bea0 (patch)
tree897a7dd35af4b750be414975f114475e746757c5 /archinstall/lib/disk.py
parenteb0ae8b1c35e421f88b7eabcc445d1069969ba76 (diff)
Wrong variable name
Diffstat (limited to 'archinstall/lib/disk.py')
-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 af40e36f..f8bdc040 100644
--- a/archinstall/lib/disk.py
+++ b/archinstall/lib/disk.py
@@ -576,7 +576,7 @@ def get_mount_info(path):
def get_partitions_in_use(mountpoint):
try:
- output = b''.join(sys_command(f'/usr/bin/findmnt --json -R {path}'))
+ output = b''.join(sys_command(f'/usr/bin/findmnt --json -R {mountpoint}'))
except SysCallError:
return {}