Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/guided.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index 4f7da99f..384c4e17 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -104,7 +104,8 @@ if harddrive.has_partitions():
archinstall.log('Using existing partition table:')
for partition in harddrive:
- archinstall.log(f" {partition}")
+ if partition.filesystem_supported():
+ archinstall.log(f" {partition}")
else:
print('Formatting woop woop!')
exit(1)