Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2021-03-08 16:14:44 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-03-08 16:14:44 +0100
commit979d162551d0796f4cbefd7a450149896e094caf (patch)
tree7a5c96ba2c32347cdbe57f88624df064102544a2 /examples
parent948878e9e3c2f4e9c8c77b11704d529f952d478c (diff)
Added some debugging.
Diffstat (limited to 'examples')
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
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.