Fix f-string is missing placeholders in unattended

This commit is contained in:
Dylan Taylor 2021-05-15 12:13:26 -04:00
parent e950c6af0f
commit 5734b6e4a5
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ for name, info in archinstall.list_profiles().items():
# that fits the requirements for this machine specifically).
if info['tailored']:
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):
print(f'{i}...')
time.sleep(1)