Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/minimal.py
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 12:12:55 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 12:12:55 -0400
commite950c6af0f16c8d194c2afecc1a400c4b149f6e4 (patch)
tree93719688d6dfe5a18255e0cde07f55ff2edddf99 /examples/minimal.py
parent14b89e6e25c83c9538da787867233bbd7db998c1 (diff)
Fix f-string is missing placeholders in minimal
Diffstat (limited to 'examples/minimal.py')
-rw-r--r--examples/minimal.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/minimal.py b/examples/minimal.py
index efd66ab7..308a5e30 100644
--- a/examples/minimal.py
+++ b/examples/minimal.py
@@ -1,13 +1,13 @@
import archinstall
# Select a harddrive and a disk password
-archinstall.log(f"Minimal only supports:")
-archinstall.log(f" * Being installed to a single disk")
+archinstall.log("Minimal only supports:")
+archinstall.log(" * Being installed to a single disk")
if archinstall.arguments.get('help', None):
- archinstall.log(f" - Optional disk encryption via --!encryption-password=<password>")
- archinstall.log(f" - Optional filesystem type via --filesystem=<fs type>")
- archinstall.log(f" - Optional systemd network via --network")
+ archinstall.log(" - Optional disk encryption via --!encryption-password=<password>")
+ archinstall.log(" - Optional filesystem type via --filesystem=<fs type>")
+ archinstall.log(" - Optional systemd network via --network")
archinstall.arguments['harddrive'] = archinstall.select_disk(archinstall.all_disks())
@@ -33,9 +33,9 @@ def install_on(mountpoint):
# Once this is done, we output some useful information to the user
# And the installation is complete.
- archinstall.log(f"There are two new accounts in your installation after reboot:")
- archinstall.log(f" * root (password: airoot)")
- archinstall.log(f" * devel (password: devel)")
+ archinstall.log("There are two new accounts in your installation after reboot:")
+ archinstall.log(" * root (password: airoot)")
+ archinstall.log(" * devel (password: devel)")
if archinstall.arguments['harddrive']: