Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/profiles/server.py
diff options
context:
space:
mode:
authorDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 14:10:44 -0400
committerDylan Taylor <dylan@dylanmtaylor.com>2021-05-15 14:29:24 -0400
commita0cbb31d3ef12d5cde2253b4a31757c0409aee40 (patch)
treee907a97d84be56dc9e363b5fa559cc7bcbbebe88 /profiles/server.py
parent85fa833a8afd3bf180720461b7ffd3477f81c049 (diff)
f-string fixes
Diffstat (limited to 'profiles/server.py')
-rw-r--r--profiles/server.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/profiles/server.py b/profiles/server.py
index afc37776..355be9f5 100644
--- a/profiles/server.py
+++ b/profiles/server.py
@@ -14,7 +14,7 @@ def _prep_function(*args, **kwargs):
Magic function called by the importing installer
before continuing any further.
"""
- selected_servers = archinstall.generic_multi_select(available_servers, f"Choose which servers to install and enable (leave blank for a minimal installation): ")
+ selected_servers = archinstall.generic_multi_select(available_servers, "Choose which servers to install and enable (leave blank for a minimal installation): ")
archinstall.storage['_selected_servers'] = selected_servers
return True
@@ -24,7 +24,7 @@ if __name__ == 'server':
"""
This "profile" is a meta-profile.
"""
- archinstall.log(f'Now installing the selected servers.', level=logging.INFO)
+ archinstall.log('Now installing the selected servers.', level=logging.INFO)
archinstall.log(archinstall.storage['_selected_servers'], level=logging.DEBUG)
for server in archinstall.storage['_selected_servers']:
archinstall.log(f'Installing {server} ...', level=logging.INFO)