Fix f-string is missing placeholders in unattended
This commit is contained in:
parent
e950c6af0f
commit
5734b6e4a5
|
|
@ -10,7 +10,7 @@ for name, info in archinstall.list_profiles().items():
|
||||||
# that fits the requirements for this machine specifically).
|
# that fits the requirements for this machine specifically).
|
||||||
if info['tailored']:
|
if info['tailored']:
|
||||||
print(f'Found a tailored profile for this machine called: "{name}".')
|
print(f'Found a tailored profile for this machine called: "{name}".')
|
||||||
print(f'Starting install in:')
|
print('Starting install in:')
|
||||||
for i in range(10, 0, -1):
|
for i in range(10, 0, -1):
|
||||||
print(f'{i}...')
|
print(f'{i}...')
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue