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-02-17 12:13:59 +0100
committerAnton Hvornum <anton.feeds@gmail.com>2021-02-17 12:13:59 +0100
commit28adc20a30142ed93c2f730f6a653d76211a1399 (patch)
tree4eff168dd229363b33e4cdec9c9d5f5ee9901ba1 /examples
parent6e2d0c98eba28fa120c67378611deee442df1e30 (diff)
Added more flags to the dummy-format
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 07b345f1..aca3520b 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -130,7 +130,7 @@ if archinstall.arguments['harddrive'].has_partitions():
while 1:
new_filesystem = input(f"Enter a valid filesystem for {partition} (leave blank for {partition.filesystem}): ").strip(' ')
try:
- partition.format(new_filesystem, path='/dev/null')
+ partition.format(new_filesystem, path='/dev/null', log_formating=False, allow_formatting=True)
except UnknownFilesystemFormat:
archinstall.log(f"Selected filesystem is not supported yet, if you wish archinstall should support '{new_filesystem}' please create a issue-ticket suggesting it on github at https://github.com/Torxed/archinstall/issues.")
archinstall.log(f"Until then, please enter another supported filesystem.")