Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorВладислав <awayfromgalaxy@gmail.com>2021-04-17 15:49:58 +0300
committerGitHub <noreply@github.com>2021-04-17 15:49:58 +0300
commit3fba7873968fff347e5304748c370bb5d8fc6662 (patch)
treea0056746cf37f3be7dc48e47ea00ac7c5189574e
parent7be93adb99bd9b534874e29b05adc1e39d98b647 (diff)
Fix typo in partition.format()
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index c0d22023..7bf088ca 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -106,7 +106,7 @@ def ask_user_questions():
# we have to check if we support it. We can do this by formatting /dev/null with the partitions filesystem.
# There's a nice wrapper for this on the partition object itself that supports a path-override during .format()
try:
- partition.format(new_filesystem, path='/dev/null', log_formating=False, allow_formatting=True)
+ partition.format(new_filesystem, path='/dev/null', log_formatting=False, allow_formatting=True)
except archinstall.UnknownFilesystemFormat:
archinstall.log(f"Selected filesystem is not supported yet. If you want archinstall to support '{new_filesystem}', please create a issue-ticket suggesting it on github at https://github.com/archlinux/archinstall/issues.")
archinstall.log(f"Until then, please enter another supported filesystem.")