index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-10-30 12:02:00 +0200 |
---|---|---|
committer | Anton Hvornum <anton@hvornum.se> | 2021-10-30 12:02:00 +0200 |
commit | 05a8739231412ca1ce866e8f8b1636b3e7b94ebe (patch) | |
tree | 1e69acacf2b5689fbcb79a11d54800950add3504 | |
parent | 76dc426a0fb69fa2d8cbc5c76934dc736d2839a6 (diff) |
-rw-r--r-- | examples/guided.py | 4 |
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: |