Wrong exposed variable corrected.

This commit is contained in:
Anton Hvornum 2021-10-30 12:02:00 +02:00
parent 76dc426a0f
commit 05a8739231
No known key found for this signature in database
GPG Key ID: F1234C5BA67C59DF
1 changed files with 2 additions and 2 deletions

View File

@ -245,9 +245,9 @@ def perform_filesystem_operations():
Setup the blockdevice, filesystem (and optionally encryption). Setup the blockdevice, filesystem (and optionally encryption).
Once that's done, we'll hand over to perform_installation() Once that's done, we'll hand over to perform_installation()
""" """
mode = archinstall.disk.GPT mode = archinstall.GPT
if has_uefi() is False: if has_uefi() is False:
mode = archinstall.disk.MBR mode = archinstall.MBR
for drive in archinstall.arguments['harddrives']: for drive in archinstall.arguments['harddrives']:
with archinstall.Filesystem(drive, mode) as fs: with archinstall.Filesystem(drive, mode) as fs: