index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-03-08 17:14:21 +0100 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-03-08 17:14:21 +0100 |
commit | 8bf3296749ebfddc5dfdcbb116547395438d371f (patch) | |
tree | 805dd878f47ad4aaf8a34f45d29ee2f9d1f747db /examples | |
parent | fb55e318e5dc87d05da4c636722d24ab9e9cb5b1 (diff) |
-rw-r--r-- | examples/guided.py | 2 |
diff --git a/examples/guided.py b/examples/guided.py index fc1fe88d..fbdba776 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -281,7 +281,7 @@ with archinstall.Filesystem(archinstall.arguments['harddrive'], archinstall.GPT) fs.use_entire_disk(archinstall.arguments.get('filesystem', 'ext4')) else: for partition in archinstall.arguments['harddrive']: - if partition.allow_formatting and partition.safe_to_format(): + if partition.safe_to_format(): partition.format() else: archinstall.log(f"Did not format {partition} because .safe_to_format() returned False or .allow_formatting was False", level=archinstall.LOG_LEVELS.Debug) |