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@hvornum.se>2021-04-19 10:07:23 +0000
committerGitHub <noreply@github.com>2021-04-19 10:07:23 +0000
commitee1464aeafdf082258d373f059deff1373dc6814 (patch)
treea0056746cf37f3be7dc48e47ea00ac7c5189574e /examples
parent7be93adb99bd9b534874e29b05adc1e39d98b647 (diff)
parent3fba7873968fff347e5304748c370bb5d8fc6662 (diff)
Merge pull request #321 from SecondThundeR/patch-1
Fix typo in partition.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 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.")