index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | examples/guided.py | 2 |
diff --git a/examples/guided.py b/examples/guided.py index 9c4f208a..e9ceae19 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -271,7 +271,7 @@ signal.signal(signal.SIGINT, original_sigint_handler) Once that's done, we'll hand over to perform_installation() """ with archinstall.Filesystem(archinstall.arguments['harddrive'], archinstall.GPT) as fs: - for partition in archinstall.arguments['harddrive'].partitions: + for partition in archinstall.arguments['harddrive']: print(partition) exit(0) # Use partitioning helper to set up the disk partitions. |