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:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 14:07:13 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 14:07:13 -0400
commit37484b7423499d5647065755a1d3e3dc6350cf82 (patch)
tree11a56d6941fe630ee1d5bce3dc154573d3c798b5 /examples/guided.py
parent3b20adb7d216cbe72bf1770e219207216bee96ee (diff)
Split filesystem message into multiple lines
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/guided.py b/examples/guided.py
index ca50f838..9b7d3f3a 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -119,8 +119,9 @@ def ask_user_questions():
try:
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.")
+ archinstall.log(f"Selected filesystem is not supported yet. If you want archinstall to support '{new_filesystem}',")
+ archinstall.log("please create a issue-ticket suggesting it on github at https://github.com/archlinux/archinstall/issues.")
+ archinstall.log("Until then, please enter another supported filesystem.")
continue
except archinstall.SysCallError:
pass # Expected exception since mkfs.<format> can not format /dev/null. But that means our .format() function supported it.