Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-18 22:09:24 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-18 22:09:24 +0000
commitceb73c5523d5ff8fb32e8a95d16d0d81914fbcfc (patch)
tree69524ce8345984caf7af05550a23789962e1d70c
parent755efe5706590dd096be551847855293c641df89 (diff)
Correction on args fetching
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 00744044..76afbddc 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -852,7 +852,7 @@ def mount_boot(drive, partition, mountpoint='/mnt/boot', *positionals, **kwargs)
def mount_mountpoints(drive, bootpartition, mountpoint='/mnt/boot', *positionals, **kwargs):
drive = args[drive]
- bootpartition = args[bootpartition]
+ bootpartition = args['partitions'][bootpartition]
mount_luksdev(*positionals, **kwargs)
mount_boot(drive, bootpartition, mountpoint='/mnt/boot', *positionals, **kwargs)