From 05a8739231412ca1ce866e8f8b1636b3e7b94ebe Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sat, 30 Oct 2021 12:02:00 +0200 Subject: Wrong exposed variable corrected. --- examples/guided.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/guided.py b/examples/guided.py index 2efb4972..f8791c9b 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -245,9 +245,9 @@ def perform_filesystem_operations(): Setup the blockdevice, filesystem (and optionally encryption). Once that's done, we'll hand over to perform_installation() """ - mode = archinstall.disk.GPT + mode = archinstall.GPT if has_uefi() is False: - mode = archinstall.disk.MBR + mode = archinstall.MBR for drive in archinstall.arguments['harddrives']: with archinstall.Filesystem(drive, mode) as fs: -- cgit v1.2.3-54-g00ecf